Sha256: bc05f0817eb3670c30af69be3139ce65a3c011f63be345052649802cffdecb15
Contents?: true
Size: 636 Bytes
Versions: 8
Compression:
Stored size: 636 Bytes
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) class Bug21465Test < Mocha::TestCase include AcceptanceTest def setup setup_acceptance_test end def teardown teardown_acceptance_test end def test_should_allow_expected_method_name_to_be_a_string test_result = run_as_test do mock = mock() mock.expects('wibble') mock.wibble end assert_passed(test_result) end def test_should_allow_stubbed_method_name_to_be_a_string test_result = run_as_test do mock = mock() mock.stubs('wibble') mock.wibble end assert_passed(test_result) end end
Version data entries
8 entries across 8 versions & 1 rubygems