diff options
| author | Teddy Wing | 2015-04-16 02:13:04 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-04-16 02:13:04 -0400 |
| commit | 6984fc31370564332ceab60c203cd6f1e695d61a (patch) | |
| tree | a53d6b3ecf3c1ba4f35fcd245c30757e1a266e11 /test/sample_test.rb | |
| parent | fa951e520b7637d9e67c31a0a8b61733e253f90b (diff) | |
| parent | 93351518faf3bb4f63b4a3cc1ef28f5c06e09f01 (diff) | |
| download | tic-tac-toe-master.tar.bz2 | |
Diffstat (limited to 'test/sample_test.rb')
| -rw-r--r-- | test/sample_test.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/sample_test.rb b/test/sample_test.rb index 88fbd6c..9948773 100644 --- a/test/sample_test.rb +++ b/test/sample_test.rb @@ -1,4 +1,4 @@ -require 'minitest/autorun' +require 'test_helper' class TestSample < Minitest::Unit::TestCase def setup @@ -8,3 +8,9 @@ class TestSample < Minitest::Unit::TestCase assert_equal 1 + 1, 2 end end + +class TestBoard < Minitest::Unit::TestCase + def test_board + Board.new + end +end |
