1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
require 'mocha'
class ReturnValueTest < Test::Unit::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
|