Added example Powershell files to the test fixtures folder

This commit is contained in:
David Rankin
2012-02-15 19:44:14 +00:00
parent 06395fa816
commit 8b3e1ce86d
2 changed files with 7 additions and 0 deletions

2
test/fixtures/hello.ps1 vendored Normal file
View File

@@ -0,0 +1,2 @@
# Hello world in powershell
Write-Host 'Hello World'

5
test/fixtures/hello.psm1 vendored Normal file
View File

@@ -0,0 +1,5 @@
# Hello World powershell module
function hello() {
Write-Host 'Hello World'
}