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
|
require File.join(File.dirname(__FILE__), "acceptance_test_helper")
require 'mocha'
class StatesTest < Test::Unit::TestCase
include AcceptanceTest
def setup
setup_acceptance_test
end
def teardown
teardown_acceptance_test
end
def test_should_constrain_expectations_to_occur_within_a_given_state
test_result = run_test do
mock = mock()
readiness = states('readiness')
mock.stubs(:first).when(readiness.is('ready'))
mock.stubs(:second).then(readiness.is('ready'))
mock.first
end
assert_failed(test_result)
end
def test_should_allow_expectations_to_occur_in_correct_state
test_result = run_test do
mock = mock()
readiness = states('readiness')
mock.stubs(:first).when(readiness.is('ready'))
mock.stubs(:second).then(readiness.is('ready'))
mock.second
mock.first
end
assert_passed(test_result)
end
def test_should_be_able_to_start_in_a_specific_state
test_result = run_test do
mock = mock()
readiness = states('readiness')
mock.stubs(:first).when(readiness.is('ready'))
readiness.starts_as('ready')
mock.first
end
assert_passed(test_result)
end
def test_should_switch_state_when_method_raises_an_exception
test_result = run_test do
mock = mock()
readiness = states('readiness')
mock.expects(:first).raises().then(readiness.is('ready'))
mock.expects(:second).when(readiness.is('ready'))
mock.first rescue nil
mock.second
end
assert_passed(test_result)
end
end
|