Sha256: 827b26f44026f807d84ba06f5e8bcad322ee5f42b5c3073893a8768d0173eb9c
Contents?: true
Size: 411 Bytes
Versions: 5
Compression:
Stored size: 411 Bytes
Contents
require 'test/helper' require 'focus' class TestFocus < Test::Unit::TestCase def setup @x = 1 end def teardown assert_equal 2, @x end def test_focus @x += 1 end def test_ignore1 flunk "ignore me!" end def test_ignore2 flunk "ignore me!" end def test_ignore3 flunk "ignore me!" end def test_focus2 @x += 1 end focus :test_focus, :test_focus2 end
Version data entries
5 entries across 5 versions & 2 rubygems