Sha256: 0abd669d65f45feec030afe4066459f26f812094f53ebbf42e15b0ffce33a6d9

Contents?: true

Size: 1.25 KB

Versions: 15

Compression:

Stored size: 1.25 KB

Contents

require File.join(File.dirname(__FILE__), "acceptance_test_helper")
require 'mocha'

class StubEverythingTest < Test::Unit::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

15 entries across 15 versions & 5 rubygems

Version Path
floehopper-mocha-0.9.6.20090629164857 test/acceptance/stub_everything_test.rb
floehopper-mocha-0.9.6.20090629165308 test/acceptance/stub_everything_test.rb
floehopper-mocha-0.9.6.20090701111305 test/acceptance/stub_everything_test.rb
floehopper-mocha-0.9.7.20090701124354 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.5.0.1240002286 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.5.0.1240351621 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.5.0.1241126838 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.7.0.1247796736 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.7.20090701124354 test/acceptance/stub_everything_test.rb
jferris-mocha-0.9.7.20090911190113 test/acceptance/stub_everything_test.rb
mocha-macruby-0.9.8.20100129120100 test/acceptance/stub_everything_test.rb
mcmire-mocha-0.9.8 test/acceptance/stub_everything_test.rb
mocha-0.9.8 test/acceptance/stub_everything_test.rb
mocha-0.9.6 test/acceptance/stub_everything_test.rb
mocha-0.9.7 test/acceptance/stub_everything_test.rb