aboutsummaryrefslogtreecommitdiffstats
path: root/test/sample_test.rb
blob: 88fbd6ca696c5a5e90cff702471767f09cbadf68 (plain)
1
2
3
4
5
6
7
8
9
10
require 'minitest/autorun'

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