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 81 82 83 84 85 86 87 88 89 90 91
|
require File.dirname(__FILE__) + '/test_helper.rb'
class TestEnumerableExpectations < Test::Unit::TestCase
def test_include
[1,2,3,4].should include(4)
end
def test_include_fail
lambda {
[1,2,3,4].should include(6)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_exclude
[1,2,3,4].should exclude(9)
end
def test_exclude_fail
lambda {
[1,2,3,4].should exclude(4)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_multi_include
[1,2,3,4].should include(1,2)
end
def test_multi_include_fail
lambda {
[1,2,3,4].should include(6,7,8)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_multi_exclude
[1,2,3,4].should exclude(13,14)
end
def test_multi_exclude_fail
lambda {
[1,2,3,4].should exclude(2,3,4)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_negative_include
[1,2,3,4].should_not include(9)
end
def test_negative_include_fail
lambda {
[1,2,3,4].should_not include(4)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_negative_exclude
[1,2,3,4].should_not exclude(3)
end
def test_negative_exclude_fail
lambda {
[1,2,3,4].should_not exclude(6,7)
}.should raise_error(Test::Unit::AssertionFailedError)
end
def test_include_fail_message
obj = include(1)
obj.matches?([4,5,6])
obj.failure_message.should be("Expected [4, 5, 6] to include [1].")
end
def test_include_negative_fail_message
obj = include(1)
obj.matches?([4,5,6])
obj.negative_failure_message.should be("Expected [4, 5, 6] to not include [1].")
end
def test_exclude_fail_message
obj = exclude(4)
obj.matches?([4,5,6])
obj.failure_message.should be("Expected [4, 5, 6] to exclude [4].")
end
def test_exclude_negative_fail_message
obj = exclude(4)
obj.matches?([4,5,6])
obj.negative_failure_message.should be("Expected [4, 5, 6] to not exclude [4].")
end
end
|