Skip to content

Instantly share code, notes, and snippets.

@reflash
Created August 28, 2018 06:05
Show Gist options
  • Save reflash/0a3a59c13dd6d9967bd0fd8a4f727978 to your computer and use it in GitHub Desktop.
Save reflash/0a3a59c13dd6d9967bd0fd8a4f727978 to your computer and use it in GitHub Desktop.
[<TestMethod>]
member this.``Test live cell with no neighbors dies``() =
[|
[|1; 0; 0|];
[|0; 0; 0|];
[|0; 0; 0|]
|]
|> Game.Step
|> should equal [|
[|0; 0; 0|];
[|0; 0; 0|];
[|0; 0; 0|]
|]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment