diff --git a/features/multiple_cells.feature b/features/multiple_cells.feature index c12dc9a..9acb0c4 100644 --- a/features/multiple_cells.feature +++ b/features/multiple_cells.feature @@ -27,11 +27,11 @@ Feature: Evolving a grid with some cells in it | . | . | . | . | . | When I evolve the board Then I should see the following board - | . | . | . | . | . | + | . | . | x | . | . | | . | x | . | x | . | - | . | . | . | . | . | + | x | . | . | . | x | | . | x | . | x | . | - | . | . | . | . | . | + | . | . | x | . | . | Scenario: Multiple dead cells coming to life Given the following setup @@ -44,6 +44,6 @@ Feature: Evolving a grid with some cells in it Then I should see the following board | . | . | . | . | . | | . | . | x | . | . | - | . | . | . | . | . | + | . | . | x | . | . | | . | . | x | . | . | | . | . | . | . | . | diff --git a/features/multiple_generations.feature b/features/multiple_generations.feature index 0c3b1b3..0bea084 100644 --- a/features/multiple_generations.feature +++ b/features/multiple_generations.feature @@ -14,14 +14,14 @@ Feature: Evolving a grid over multiple generations Then I should see the following board | . | . | . | . | . | | . | . | x | . | . | - | . | . | . | . | . | + | . | . | x | . | . | | . | . | x | . | . | | . | . | . | . | . | When I evolve the board Then I should see the following board | . | . | . | . | . | | . | . | . | . | . | - | . | . | . | . | . | + | . | x | x | x | . | | . | . | . | . | . | | . | . | . | . | . |