]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb
Removing rspec from svn, as it isn't being used.
[rails.git] / vendor / gems / rspec-1.1.2 / examples / stories / game-of-life / behaviour / examples / game_behaviour.rb
diff --git a/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb b/vendor/gems/rspec-1.1.2/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb
deleted file mode 100644 (file)
index ff5b357..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-require 'life'
-
-describe Game do
-  it 'should have a grid' do
-    # given
-    game = Game.new(5, 5)
-    
-    # then
-    game.grid.should be_kind_of(Grid)
-  end
-  
-  it 'should create a cell' do
-    # given
-    game = Game.new(2, 2)
-    expected_grid = Grid.from_string( 'X. ..' )
-    
-    # when
-    game.create_at(0, 0)
-    
-    # then
-    game.grid.should == expected_grid
-  end
-  
-  it 'should destroy a cell' do
-    # given
-    game = Game.new(2,2)
-    game.grid = Grid.from_string('X. ..')
-    
-    # when
-    game.destroy_at(0,0)
-    
-    # then
-    game.grid.should == Grid.from_string('.. ..')
-  end
-end