Sha256: 04f1f79240575b5c775ab4ba51f0d94fca6e573fe9bf02dc2dcee112c6fda1c0
Contents?: true
Size: 1.4 KB
Versions: 8
Compression:
Stored size: 1.4 KB
Contents
require 'test/unit/testcase' module Test module Unit # This extension of the standard Test::Unit::TestCase makes RSpec # available from within, so that you can do things like: # # require 'spec/test/unit' # # class MyTest < Test::Unit::TestCase # it "should work with Test::Unit assertions" do # assert_equal 4, 2+1 # end # # def test_should_work_with_rspec_expectations # (3+1).should == 5 # end # end # # See also Spec::Example::ExampleGroup class TestCase extend Spec::Example::ExampleGroupMethods include Spec::Example::ExampleMethods def self.suite Test::Unit::TestSuiteAdapter.new(self) end def self.example_method?(method_name) should_method?(method_name) || test_method?(method_name) end def self.test_method?(method_name) method_name =~ /^test[_A-Z]./ && ( instance_method(method_name).arity == 0 || instance_method(method_name).arity == -1 ) end before(:each) {setup} after(:each) {teardown} def initialize(description, &implementation) super # Some Test::Unit extensions depend on @method_name being present. @method_name = description.description @_result = ::Test::Unit::TestResult.new end def run(ignore_this_argument=nil) super() end end end end
Version data entries
8 entries across 8 versions & 1 rubygems