X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a5336e68a3fb124b6d024ea9b0b9d7bfe88b3b6a..0436b4878ce29c48b690772e61fcaf7aaae8a4ac:/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story diff --git a/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story b/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story deleted file mode 100644 index cbc248e73..000000000 --- a/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +++ /dev/null @@ -1,42 +0,0 @@ -Story: Empty spaces with three neighbours create a cell - -As a game producer -I want empty cells with three neighbours to die -So that I have a minimum feature set to ship - -Scenario: the glider - -Given the grid looks like -...X.. -..X... -..XXX. -...... -...... -When the next step occurs -Then the grid should look like -...... -..X.X. -..XX.. -...X.. -...... -When the next step occurs -Then the grid should look like -...... -..X... -..X.X. -..XX.. -...... -When the next step occurs -Then the grid should look like -...... -...X.. -.XX... -..XX.. -...... -When the next step occurs -Then the grid should look like -...... -..X... -.X.... -.XXX.. -......