Sha256: 78ede61771f52a50417e6af3a79a9647c5f863236bacadfaa012368d7a9c914e

Contents?: true

Size: 852 Bytes

Versions: 3

Compression:

Stored size: 852 Bytes

Contents

require File.expand_path('../../spec_helper', __FILE__)
require File.expand_path('../../../common/adapter_integration_tests', __FILE__)

describe 'Test::Unit 1 integration' do
  include AdapterIntegrationTests

  def bootstrap
    <<-EOT
      require 'test/unit'
      require 'rubygems'
      require 'rr'
    EOT
  end

  def error_test
    <<-EOT
      #{bootstrap}

      class FooTest < Test::Unit::TestCase
        def test_foo
          object = Object.new
          mock(object).foo
        end
      end
    EOT
  end

  def include_adapter_test
    <<-EOT
      #{bootstrap}

      class Test::Unit::TestCase
        include RR::Adapters::TestUnit
      end

      class FooTest < Test::Unit::TestCase
        def test_foo
          object = Object.new
          mock(object).foo
          object.foo
        end
      end
    EOT
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rr-1.1.0 spec/suites/rspec_1/integration/test_unit_1_spec.rb
rr-1.1.0.rc3 spec/suites/rspec_1/integration/test_unit_1_spec.rb
rr-1.1.0.rc2 spec/suites/rspec_1/integration/test_unit_1_spec.rb