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

class TestBoard < Minitest::Unit::TestCase
  def setup
    @board = Board.new
  end
  
  def test_render
    assert_equal @board.render, <<EOS
...
...
...
EOS
  end
end