diff options
| author | Teddy Wing | 2015-04-14 17:38:55 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2015-04-14 17:38:55 -0400 | 
| commit | 4ef14b7315bb6bdb5a717f7d0ed5a4ff8d419731 (patch) | |
| tree | 388625e5167b7d2b0eb881a3f918d53b22c49ffc /spec/spec_helper.rb | |
| parent | eba2547a194b801596b43f6ba37b7d1b867a321d (diff) | |
| download | tic-tac-toe-4ef14b7315bb6bdb5a717f7d0ed5a4ff8d419731.tar.bz2 | |
spec_helper: Move `require 'board'` to board_spec
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.
Diffstat (limited to 'spec/spec_helper.rb')
| -rw-r--r-- | spec/spec_helper.rb | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index bc35b45..1655612 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,4 +1,2 @@  require 'minitest/spec'  require 'minitest/autorun' - -require 'board' | 
