Sha256: 429d54da07bc482fec530adcc65fa8735f21ec02f0c95233162cdeb02adf0b46

Contents?: true

Size: 1.22 KB

Versions: 8

Compression:

Stored size: 1.22 KB

Contents

require File.expand_path('../acceptance_test_helper', __FILE__)

class StubEverythingTest < Mocha::TestCase
  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  def test_should_build_stub_and_explicitly_add_an_expectation
    test_result = run_as_test do
      foo = stub_everything
      foo.stubs(:bar)
      foo.bar
      foo.unexpected_invocation
    end
    assert_passed(test_result)
  end

  def test_should_build_named_stub_and_explicitly_add_an_expectation
    test_result = run_as_test do
      foo = stub_everything('foo')
      foo.stubs(:bar)
      foo.bar
      foo.unexpected_invocation
    end
    assert_passed(test_result)
  end

  def test_should_build_stub_incorporating_two_expectations
    test_result = run_as_test do
      foo = stub_everything(:bar => 'bar', :baz => 'baz')
      foo.bar
      foo.baz
      foo.unexpected_invocation
    end
    assert_passed(test_result)
  end

  def test_should_build_named_stub_incorporating_two_expectations
    test_result = run_as_test do
      foo = stub_everything('foo', :bar => 'bar', :baz => 'baz')
      foo.bar
      foo.baz
      foo.unexpected_invocation
    end
    assert_passed(test_result)
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
mocha-1.11.2 test/acceptance/stub_everything_test.rb
mocha-1.11.1 test/acceptance/stub_everything_test.rb
mocha-1.11.0 test/acceptance/stub_everything_test.rb
mocha-1.10.2 test/acceptance/stub_everything_test.rb
mocha-1.10.1 test/acceptance/stub_everything_test.rb
mocha-1.10.0 test/acceptance/stub_everything_test.rb
mocha-1.10.0.beta.1 test/acceptance/stub_everything_test.rb
mocha-1.10.0.alpha test/acceptance/stub_everything_test.rb