Sha256: b9b2b557533ed6724fcebd9cae0c1318546a87c6a8c6f0fe94dbe3123c5e351f
Contents?: true
Size: 1.3 KB
Versions: 17
Compression:
Stored size: 1.3 KB
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) require 'mocha/setup' class ReturnValueTest < Mocha::TestCase include AcceptanceTest def setup setup_acceptance_test end def teardown teardown_acceptance_test end def test_should_build_mock_and_explicitly_add_an_expectation_with_a_return_value test_result = run_as_test do foo = mock('foo') foo.expects(:bar).returns('bar') assert_equal 'bar', foo.bar end assert_passed(test_result) end def test_should_build_mock_incorporating_two_expectations_with_return_values test_result = run_as_test do foo = mock('foo', :bar => 'bar', :baz => 'baz') assert_equal 'bar', foo.bar assert_equal 'baz', foo.baz end assert_passed(test_result) end def test_should_build_stub_and_explicitly_add_an_expectation_with_a_return_value test_result = run_as_test do foo = stub('foo') foo.stubs(:bar).returns('bar') assert_equal 'bar', foo.bar end assert_passed(test_result) end def test_should_build_stub_incorporating_two_expectations_with_return_values test_result = run_as_test do foo = stub('foo', :bar => 'bar', :baz => 'baz') assert_equal 'bar', foo.bar assert_equal 'baz', foo.baz end assert_passed(test_result) end end
Version data entries
17 entries across 14 versions & 4 rubygems