File: stubbing_frozen_object_test.rb

package info (click to toggle)
ruby-mocha 2.4.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,540 kB
  • sloc: ruby: 11,899; javascript: 477; makefile: 14
file content (80 lines) | stat: -rw-r--r-- 2,691 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
require File.expand_path('../acceptance_test_helper', __FILE__)
require 'execution_point'

class StubbingFrozenObjectTest < Mocha::TestCase
  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  def test_should_fail_fast_if_attempting_to_stub_method_on_frozen_object
    object = Object.new
    object.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; object.stubs(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end

  def test_should_fail_fast_if_attempting_to_expect_method_on_frozen_object
    object = Object.new
    object.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; object.expects(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end

  def test_should_fail_fast_if_attempting_to_stub_method_on_frozen_class
    klass = Class.new
    klass.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; klass.stubs(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end

  def test_should_fail_fast_if_attempting_to_expect_method_on_frozen_class
    klass = Class.new
    klass.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; klass.expects(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end

  def test_should_fail_fast_if_attempting_to_stub_method_on_any_instance_of_frozen_class
    klass = Class.new
    klass.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; klass.any_instance.stubs(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end

  def test_should_fail_fast_if_attempting_to_expect_method_on_any_instance_of_frozen_class
    klass = Class.new
    klass.freeze
    execution_point = nil
    test_result = run_as_test do
      execution_point = ExecutionPoint.current; klass.any_instance.expects(:stubbed_method)
    end
    assert_errored(test_result)
    assert_equal execution_point, ExecutionPoint.new(test_result.errors[0].exception.backtrace)
  end
end