Sha256: f9d129ef6170120faf676fd3c50a7e70dc38177c0003bd2f5c311af2ccd93d66
Contents?: true
Size: 1.25 KB
Versions: 41
Compression:
Stored size: 1.25 KB
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) 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
41 entries across 36 versions & 6 rubygems