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