File: change_state_side_effect_test.rb

package info (click to toggle)
ruby-mocha 0.11.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,300 kB
  • sloc: ruby: 9,935; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 786 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
require File.expand_path('../../test_helper', __FILE__)

require 'mocha/change_state_side_effect'

class ChangeStateSideEffectTest < Test::Unit::TestCase

  include Mocha

  class FakeState

    attr_reader :active
    attr_writer :description

    def activate
      @active = true
    end

    def mocha_inspect
      @description
    end

  end

  def test_should_activate_the_given_state
    state = FakeState.new
    side_effect = ChangeStateSideEffect.new(state)

    side_effect.perform

    assert state.active
  end

  def test_should_describe_itself_in_terms_of_the_activated_state
    state = FakeState.new
    state.description = 'the-new-state'
    side_effect = ChangeStateSideEffect.new(state)

    assert_equal 'then the-new-state', side_effect.mocha_inspect
  end

end