aboutsummaryrefslogtreecommitdiffstats
path: root/test/sample_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/sample_test.rb')
-rw-r--r--test/sample_test.rb8
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