Sha256: 98f4aeae525312d2a0bc8e96c855f18087ae4c8885be73c163ef7c8b0b5a9b6e
Contents?: true
Size: 270 Bytes
Versions: 3
Compression:
Stored size: 270 Bytes
Contents
require 'minitest/spec' require 'minitest/unit' describe 'vanilla' do it 'supports regular old minitest specs' do (1 + 1).must_equal 2 end end class TestVanilla < MiniTest::Unit def test_supports_regular_old_minitest_tests (1 - 1).must_equal 0 end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
mtbb-0.1.2 | test/vanilla_test.rb |
mtbb-0.1.1 | test/vanilla_test.rb |
mtbb-0.1.0 | test/vanilla_test.rb |