-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(feat #115): Fix broken greps and refactor it to use Scribbler
- Loading branch information
1 parent
96db406
commit 0173603
Showing
2 changed files
with
49 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
Elizium.Loopz/Tests/Public/commands/Select-Patterns.tests.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
Describe 'Select-Patterns' { | ||
BeforeAll { | ||
Get-Module Elizium.Loopz | Remove-Module | ||
Import-Module .\Output\Elizium.Loopz\Elizium.Loopz.psm1 ` | ||
-ErrorAction 'stop' -DisableNameChecking; | ||
} | ||
|
||
Context 'given: multiple patterns' { | ||
It 'should: perform multiple searches chained together' { | ||
Select-Patterns -Patterns 'a', 'b', 'c' -Filter '*.txt' -Test; | ||
} | ||
} | ||
} |