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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
require 'mocha'
class OptionalParameterMatcherTest < Test::Unit::TestCase
include AcceptanceTest
def setup
setup_acceptance_test
end
def teardown
teardown_acceptance_test
end
def test_should_pass_if_all_required_parameters_match_and_no_optional_parameters_are_supplied
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2)
end
assert_passed(test_result)
end
def test_should_pass_if_all_required_and_optional_parameters_match_and_some_optional_parameters_are_supplied
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2, 3)
end
assert_passed(test_result)
end
def test_should_pass_if_all_required_and_optional_parameters_match_and_all_optional_parameters_are_supplied
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2, 3, 4)
end
assert_passed(test_result)
end
def test_should_fail_if_all_required_and_optional_parameters_match_but_too_many_optional_parameters_are_supplied
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2, 3, 4, 5)
end
assert_failed(test_result)
end
def test_should_fail_if_all_required_parameters_match_but_some_optional_parameters_do_not_match
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2, 4)
end
assert_failed(test_result)
end
def test_should_fail_if_all_required_parameters_match_but_no_optional_parameters_match
test_result = run_test do
mock = mock()
mock.expects(:method).with(1, 2, optionally(3, 4))
mock.method(1, 2, 4, 5)
end
assert_failed(test_result)
end
end
|