Skip to content

Instantly share code, notes, and snippets.

@smallgeek
Created August 26, 2012 08:02
Show Gist options
  • Select an option

  • Save smallgeek/3475980 to your computer and use it in GitHub Desktop.

Select an option

Save smallgeek/3475980 to your computer and use it in GitHub Desktop.
NaturalSpec_Tutorial_6_1
/// 事前に定義されたソートのシナリオ
let sortingScenario f list =
Given list
|> When sorting_with f
|> It should be sorted
|> It should contain_all_elements_from list
|> It should contain_no_other_elements_than list
/// 事前に定義されたクイックソートのシナリオ
let quicksortScenario list = sortingScenario QuickSort list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment