File: issue_65_test.rb

package info (click to toggle)
ruby-mocha 3.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,652 kB
  • sloc: ruby: 12,324; javascript: 499; makefile: 14
file content (66 lines) | stat: -rw-r--r-- 1,416 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
# frozen_string_literal: true

require File.expand_path('../acceptance_test_helper', __FILE__)

class Issue65Test < Mocha::TestCase
  include AcceptanceTestHelper

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  def test_expectations_on_class_methods_on_same_class_should_be_verified_in_consecutive_tests
    klass = Class.new do
      def self.foo; end

      def self.bar; end
    end
    test1 = run_as_test do
      klass.expects(:foo)
      klass.foo
    end
    assert_passed(test1)
    test2 = run_as_test do
      klass.expects(:bar)
    end
    assert_failed(test2)
  end

  def test_expectations_on_any_instance_methods_on_same_class_should_be_verified_in_consecutive_tests
    klass = Class.new do
      def foo; end

      def bar; end
    end
    test1 = run_as_test do
      klass.any_instance.expects(:foo)
      klass.new.foo
    end
    assert_passed(test1)
    test2 = run_as_test do
      klass.any_instance.expects(:bar)
    end
    assert_failed(test2)
  end

  def test_expectations_on_instance_methods_on_same_object_should_be_verified_in_consecutive_tests
    instance = Class.new do
      def foo; end

      def bar; end
    end.new
    test1 = run_as_test do
      instance.expects(:foo)
      instance.foo
    end
    assert_passed(test1)
    test2 = run_as_test do
      instance.expects(:bar)
    end
    assert_failed(test2)
  end
end