Created
August 26, 2012 05:57
-
-
Save smallgeek/3474771 to your computer and use it in GitHub Desktop.
NaturalSpec_Tutorial_2_1
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
module ListSpec | |
open NaturalSpec | |
[<Scenario>] | |
let When_removing_an_3_from_a_small_list_it_should_not_contain_3() = | |
Given [1;2;3;4;5] | |
|> When removing 3 | |
|> It shouldn't contain 3 | |
|> Verify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment