File: return_value_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 (49 lines) | stat: -rw-r--r-- 1,294 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
require File.expand_path('../acceptance_test_helper', __FILE__)

class ReturnValueTest < Mocha::TestCase
  include AcceptanceTest

  def setup
    setup_acceptance_test
  end

  def teardown
    teardown_acceptance_test
  end

  def test_should_build_mock_and_explicitly_add_an_expectation_with_a_return_value
    test_result = run_as_test do
      foo = mock('foo')
      foo.expects(:bar).returns('bar')
      assert_equal 'bar', foo.bar
    end
    assert_passed(test_result)
  end

  def test_should_build_mock_incorporating_two_expectations_with_return_values
    test_result = run_as_test do
      foo = mock('foo', bar: 'bar', baz: 'baz')
      assert_equal 'bar', foo.bar
      assert_equal 'baz', foo.baz
    end
    assert_passed(test_result)
  end

  def test_should_build_stub_and_explicitly_add_an_expectation_with_a_return_value
    test_result = run_as_test do
      foo = stub('foo')
      foo.stubs(:bar).returns('bar')
      assert_equal 'bar', foo.bar
    end
    assert_passed(test_result)
  end

  def test_should_build_stub_incorporating_two_expectations_with_return_values
    test_result = run_as_test do
      foo = stub('foo', bar: 'bar', baz: 'baz')
      assert_equal 'bar', foo.bar
      assert_equal 'baz', foo.baz
    end
    assert_passed(test_result)
  end
end