Sha256: ff5765b23fa2ec981c99459a3bd2537a67534a05c9a7801d955756dfac8b57c3
Contents?: true
Size: 659 Bytes
Versions: 33
Compression:
Stored size: 659 Bytes
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) require 'mocha' class Bug21465Test < Test::Unit::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
33 entries across 28 versions & 3 rubygems