From 8b3e1ce86d82708e47b81900594f7a474164ca1b Mon Sep 17 00:00:00 2001 From: David Rankin Date: Wed, 15 Feb 2012 19:44:14 +0000 Subject: [PATCH] Added example Powershell files to the test fixtures folder --- test/fixtures/hello.ps1 | 2 ++ test/fixtures/hello.psm1 | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 test/fixtures/hello.ps1 create mode 100644 test/fixtures/hello.psm1 diff --git a/test/fixtures/hello.ps1 b/test/fixtures/hello.ps1 new file mode 100644 index 00000000..eca1e76c --- /dev/null +++ b/test/fixtures/hello.ps1 @@ -0,0 +1,2 @@ +# Hello world in powershell +Write-Host 'Hello World' \ No newline at end of file diff --git a/test/fixtures/hello.psm1 b/test/fixtures/hello.psm1 new file mode 100644 index 00000000..3db82f01 --- /dev/null +++ b/test/fixtures/hello.psm1 @@ -0,0 +1,5 @@ +# Hello World powershell module + +function hello() { + Write-Host 'Hello World' +} \ No newline at end of file