Sha256: ebcc1dfbf371cac536776757f2870efab6341902d080e41388654604dc063b1f

Contents?: true

Size: 1.19 KB

Versions: 12

Compression:

Stored size: 1.19 KB

Contents

require File.expand_path("#{File.dirname(__FILE__)}/test_helper")

class TestUnitIntegrationTest < Test::Unit::TestCase
  def setup
    super
    @subject = Object.new
  end

  def teardown
    super
  end

  def test_using_a_mock
    mock(@subject).foobar(1, 2) {:baz}
    assert_equal :baz, @subject.foobar(1, 2)
  end
  
  def test_using_a_stub
    stub(@subject).foobar {:baz}
    assert_equal :baz, @subject.foobar("any", "thing")
  end

  def test_using_a_mock_proxy
    def @subject.foobar
      :baz
    end

    mock.proxy(@subject).foobar
    assert_equal :baz, @subject.foobar
  end

  def test_using_a_stub_proxy
    def @subject.foobar
      :baz
    end

    stub.proxy(@subject).foobar
    assert_equal :baz, @subject.foobar
  end

  def test_times_called_verification
    mock(@subject).foobar(1, 2) {:baz}
    assert_raise RR::Errors::TimesCalledError do
      teardown
    end
  end

  def test_using_assert_received
    stub(@subject).foobar(1, 2)
    @subject.foobar(1, 2)
    assert_received(@subject) {|subject| subject.foobar(1, 2)} 

    assert_raise(RR::Errors::SpyVerificationErrors::InvocationCountError) do
      assert_received(@subject) {|subject| subject.foobar(1, 2, 3)}
    end
  end
end

Version data entries

12 entries across 12 versions & 4 rubygems

Version Path
jferris-rr-0.7.1.0.1239654108 spec/rr/test_unit/test_unit_integration_test.rb
redinger-redinger-rr-0.10.3 spec/rr/test_unit/test_unit_integration_test.rb
redinger-rr-0.10.4 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.10.4 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.10.2 spec/rr/test_unit/test_unit_integration_test.rb
redinger-rr-0.10.3 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.10.0 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.7.1 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.9.0 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.7.0 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.8.0 spec/rr/test_unit/test_unit_integration_test.rb
rr-0.8.1 spec/rr/test_unit/test_unit_integration_test.rb