|
49 | 49 | end
|
50 | 50 | end
|
51 | 51 |
|
| 52 | +describe "be_kind_of" do |
| 53 | + it "passes if actual is kind of expected class" do |
| 54 | + expect("foo").to be_kind_of(String) |
| 55 | + expect("foo").to_not be_kind_of(Numeric) |
| 56 | + end |
| 57 | + |
| 58 | + it "passes if actual is kind of superclass of expected class" do |
| 59 | + expect([]).to be_kind_of(Object) |
| 60 | + end |
| 61 | + |
| 62 | + it "fails if expected is not a kind of expected" do |
| 63 | + expect { |
| 64 | + expect("foo").to be_kind_of(Integer) |
| 65 | + }.to raise_error(Exception) |
| 66 | + |
| 67 | + expect { |
| 68 | + expect("foo").to_not be_kind_of(String) |
| 69 | + }.to raise_error(Exception) |
| 70 | + end |
| 71 | +end |
| 72 | + |
52 | 73 | describe "eq" do
|
53 | 74 | it "matches when actual == expected" do
|
54 | 75 | expect(:foo).to eq(:foo)
|
|
69 | 90 | end
|
70 | 91 | end
|
71 | 92 |
|
72 |
| -describe "be_kind_of" do |
73 |
| - it "passes if actual is kind of expected class" do |
74 |
| - expect("foo").to be_kind_of(String) |
75 |
| - expect("foo").to_not be_kind_of(Numeric) |
| 93 | +describe "eql" do |
| 94 | + it "matches when expected.eql?(actual)" do |
| 95 | + expect(1).to eql(1) |
76 | 96 | end
|
77 | 97 |
|
78 |
| - it "passes if actual is kind of superclass of expected class" do |
79 |
| - expect([]).to be_kind_of(Object) |
| 98 | + it "does not match when !expected.eql?(actual)" do |
| 99 | + expect(1).to_not eql(:foo) |
80 | 100 | end
|
81 | 101 |
|
82 |
| - it "fails if expected is not a kind of expected" do |
| 102 | + it "fails if matcher does not match" do |
83 | 103 | expect {
|
84 |
| - expect("foo").to be_kind_of(Integer) |
| 104 | + expect(1).to eql(:bar) |
85 | 105 | }.to raise_error(Exception)
|
86 | 106 |
|
87 | 107 | expect {
|
88 |
| - expect("foo").to_not be_kind_of(String) |
| 108 | + expect(2).to_not eql(2) |
| 109 | + }.to raise_error(Exception) |
| 110 | + end |
| 111 | +end |
| 112 | + |
| 113 | +describe "include" do |
| 114 | + it "matches if actual includes expected" do |
| 115 | + expect("foo").to include("f") |
| 116 | + expect([:foo, :bar, :baz]).to include(:baz) |
| 117 | + expect({ :yellow => 'lorry' }).to include(:yellow) |
| 118 | + end |
| 119 | + |
| 120 | + it "does not match if actual does not inlcude expected" do |
| 121 | + expect("foo").to_not include("b") |
| 122 | + expect([:foo, :bar, :baz]).to_not include(:kapow) |
| 123 | + expect({ :yellow => 'lorry' }).to_not include(:red) |
| 124 | + end |
| 125 | + |
| 126 | + it "fails if matcher does not match" do |
| 127 | + expect { |
| 128 | + expect("bar").to include("z") |
89 | 129 | }.to raise_error(Exception)
|
90 | 130 | end
|
91 | 131 | end
|
0 commit comments