aboutsummaryrefslogtreecommitdiffstats
path: root/test/sample_test.rb
blob: 9948773fdca420e7bf3ff13dbc9c2e3e94743549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'test_helper'

class TestSample < Minitest::Unit::TestCase
  def setup
  end
  
  def test_sample
    assert_equal 1 + 1, 2
  end
end

class TestBoard < Minitest::Unit::TestCase
  def test_board
    Board.new
  end
end