Skip to content

Commit

Permalink
Merge pull request pester#485 from urasandesu/master
Browse files Browse the repository at this point in the history
Fix test failed sample
  • Loading branch information
dlwyatt committed Mar 6, 2016
2 parents 132c0e0 + d57a4fa commit 36687b4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ function BuildIfChanged {
if($thisVersion -ne $nextVersion) {Build $nextVersion}
return $nextVersion
}
# Imagine that the following functions have heavy side-effect
function Get-Version {
throw New-Object NotImplementedException
}
function Get-NextVersion {
throw New-Object NotImplementedException
}
```

BuildChanges.Tests.ps1
Expand Down

0 comments on commit 36687b4

Please sign in to comment.