powerslim
Version:
An implementation of FitNesse Slim in PowerShell
16 lines (12 loc) • 521 B
Plain Text
!|script|
|eval|$server2 = start-process PowerShell "-ExecutionPolicy unrestricted -file .\slim.ps1 37 server" -PassThru|
|eval|$server3 = start-process PowerShell "-ExecutionPolicy unrestricted -file .\slim.ps1 38 server" -PassThru|
!|script|remote|localhost:37|
|$symbolA=|eval|"Hello"|
|$symbolB=|eval|"PowerSlim"|
|check|eval|"$symbolA $symbolB"|Hello PowerSlim|
!|script|remote|localhost:38|
|check|eval|"$symbolA $symbolB"|Hello PowerSlim|
-!|script|
|eval|$server2.Kill()|
|eval|$server3.Kill()|