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/ICanCreateACell.story diff --git a/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story b/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story deleted file mode 100644 index 88895cb69..000000000 --- a/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +++ /dev/null @@ -1,42 +0,0 @@ -Story: I can create a cell - -As a game producer -I want to create a cell -So that I can show the grid to people - -Scenario: nothing to see here - -Given a 3 x 3 game -Then the grid should look like -... -... -... - -Scenario: all on its lonesome - -Given a 3 x 3 game -When I create a cell at 1, 1 -Then the grid should look like -... -.X. -... - -Scenario: the grid has three cells - -Given a 3 x 3 game -When I create a cell at 0, 0 -and I create a cell at 0, 1 -and I create a cell at 2, 2 -Then the grid should look like -XX. -... -..X - -Scenario: more cells more more - -Given the grid has three cells -When I create a celll at 3, 1 -Then the grid should look like -XX. -..X -..X