Sha256: 9aff3b68a2fde486f39a4c756c15c648db598cc85c5f2585026359f3374c033f
Contents?: true
Size: 2 KB
Versions: 11
Compression:
Stored size: 2 KB
Contents
require File.expand_path('../acceptance_test_helper', __FILE__) require 'mocha/setup' class StubbingMethodUnnecessarilyTest < Test::Unit::TestCase include AcceptanceTest def setup setup_acceptance_test end def teardown teardown_acceptance_test end def test_should_allow_stubbing_method_unnecessarily Mocha::Configuration.allow(:stubbing_method_unnecessarily) test_result = run_as_test do mock = mock('mock') mock.stubs(:public_method) end assert_passed(test_result) assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)') end def test_should_warn_when_stubbing_method_unnecessarily Mocha::Configuration.warn_when(:stubbing_method_unnecessarily) test_result = run_as_test do mock = mock('mock') mock.stubs(:public_method) end assert_passed(test_result) assert @logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)') end def test_should_prevent_stubbing_method_unnecessarily Mocha::Configuration.prevent(:stubbing_method_unnecessarily) test_result = run_as_test do mock = mock('mock') mock.stubs(:public_method) end assert_failed(test_result) assert test_result.error_messages.include?('Mocha::StubbingError: stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)') end def test_should_default_to_allow_stubbing_method_unnecessarily test_result = run_as_test do mock = mock('mock') mock.stubs(:public_method) end assert_passed(test_result) assert !@logger.warnings.include?('stubbing method unnecessarily: #<Mock:mock>.public_method(any_parameters)') end def test_should_allow_stubbing_method_when_stubbed_method_is_invoked Mocha::Configuration.prevent(:stubbing_method_unnecessarily) test_result = run_as_test do mock = mock('mock') mock.stubs(:public_method) mock.public_method end assert_passed(test_result) end end
Version data entries
11 entries across 10 versions & 3 rubygems