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
|
require File.expand_path('../acceptance_test_helper', __FILE__)
require 'execution_point'
class StubbingErrorBacktraceTest < Mocha::TestCase
include AcceptanceTest
def setup
setup_acceptance_test
end
def teardown
teardown_acceptance_test
end
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_non_existent_method_was_made
execution_point = nil
object = Object.new
Mocha.configure { |c| c.stubbing_non_existent_method = :prevent }
test_result = run_as_test do
execution_point = ExecutionPoint.current; object.stubs(:non_existent_method)
end
assert_errored(test_result)
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
end
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_non_public_method_was_made
execution_point = nil
object = Class.new do
def non_public_method; end
private :non_public_method
end.new
Mocha.configure { |c| c.stubbing_non_public_method = :prevent }
test_result = run_as_test do
execution_point = ExecutionPoint.current; object.stubs(:non_public_method)
end
assert_errored(test_result)
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
end
def test_should_display_backtrace_indicating_line_number_where_attempt_to_stub_method_on_non_mock_object_was_made
execution_point = nil
object = Object.new
Mocha.configure { |c| c.stubbing_method_on_non_mock_object = :prevent }
test_result = run_as_test do
execution_point = ExecutionPoint.current; object.stubs(:any_method)
end
assert_errored(test_result)
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
end
def test_should_display_backtrace_indicating_line_number_where_method_was_unnecessarily_stubbed
execution_point = nil
object = Object.new
Mocha.configure { |c| c.stubbing_method_unnecessarily = :prevent }
test_result = run_as_test do
execution_point = ExecutionPoint.current; object.stubs(:unused_method)
end
assert_errored(test_result)
assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
end
end
|