changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1Story: cells with less than two neighbours die
2
3As a game producer
4I want cells with less than two neighbours to die
5So that I can illustrate how the game works to people with money
6
7Scenario: cells with zero or one neighbour die
8
9Given the grid looks like
10........
11.XX.XX..
12.XX.....
13....X...
14........
15When the next step occurs
16Then the grid should look like
17........
18.XX.....
19.XX.....
20........
21........