Sha256: 5820430b6d81e6907922144f457167c9be52ca0a33e2fb8de9a3ee01d83c4874
Contents?: true
Size: 1.07 KB
Versions: 33
Compression:
Stored size: 1.07 KB
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) require 'mocha' class StubTest < 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() foo.stubs(:bar) foo.bar 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('foo') foo.stubs(:bar) foo.bar end assert_passed(test_result) end def test_should_build_stub_incorporating_two_expectations test_result = run_as_test do foo = stub(:bar => 'bar', :baz => 'baz') foo.bar foo.baz end assert_passed(test_result) end def test_should_build_named_stub_incorporating_two_expectations test_result = run_as_test do foo = stub('foo', :bar => 'bar', :baz => 'baz') foo.bar foo.baz end assert_passed(test_result) end end
Version data entries
33 entries across 28 versions & 3 rubygems