aboutsummaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
AgeCommit message (Collapse)Author
2015-04-14spec_helper: Move `require 'board'` to board_specTeddy Wing
We shouldn't be requiring all our files & classes in the spec_helper. It should just be used for test setup. We can require the modules we need for testing directly in the test files.
2015-04-11Use specs, create BoardTeddy Wing
Use specs for testing, create a spec for the Board class. Simple functionality and test to print a grid of dots for the board.