Sha256: 180b990f62e8b72d940bfb2c35f70ee7e974ef5dd997ba45d2de558b62f2a3f3
Contents?: true
Size: 1.08 KB
Versions: 11
Compression:
Stored size: 1.08 KB
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) require 'mocha/setup' class MockWithInitializerBlockTest < Test::Unit::TestCase include AcceptanceTest def setup setup_acceptance_test end def teardown teardown_acceptance_test end def test_should_expect_two_method_invocations_and_receive_both_of_them test_result = run_as_test do mock = mock() do expects(:method_1) expects(:method_2) end mock.method_1 mock.method_2 end assert_passed(test_result) end def test_should_expect_two_method_invocations_but_receive_only_one_of_them test_result = run_as_test do mock = mock() do expects(:method_1) expects(:method_2) end mock.method_1 end assert_failed(test_result) end def test_should_stub_methods test_result = run_as_test do mock = mock() do stubs(:method_1).returns(1) stubs(:method_2).returns(2) end assert_equal 1, mock.method_1 assert_equal 2, mock.method_2 end assert_passed(test_result) end end
Version data entries
11 entries across 10 versions & 3 rubygems