diff options
| author | Teddy Wing | 2015-04-11 16:28:24 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-04-11 16:32:17 -0400 |
| commit | d1e085097a85fe6bc0e42331e0841c1e9257fbc4 (patch) | |
| tree | e207a95bcf95966c6f8ffb540db37340677fceb3 /spec/spec_helper.rb | |
| parent | 189e854ed544b81f12773dea9996f1da66118cf9 (diff) | |
| download | tic-tac-toe-d1e085097a85fe6bc0e42331e0841c1e9257fbc4.tar.bz2 | |
Use specs, create Board
Use specs for testing, create a spec for the Board class.
Simple functionality and test to print a grid of dots for the board.
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb new file mode 100644 index 0000000..bc35b45 --- /dev/null +++ b/spec/spec_helper.rb @@ -0,0 +1,4 @@ +require 'minitest/spec' +require 'minitest/autorun' + +require 'board' |
