Skip to content

Commit 9e1caeb

Browse files
committedOct 27, 2013
Add some more basic matcher specs
1 parent c01f6ad commit 9e1caeb

File tree

1 file changed

+49
-9
lines changed

1 file changed

+49
-9
lines changed
 

‎spec/matchers_spec.rb

+49-9
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,27 @@
4949
end
5050
end
5151

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+
5273
describe "eq" do
5374
it "matches when actual == expected" do
5475
expect(:foo).to eq(:foo)
@@ -69,23 +90,42 @@
6990
end
7091
end
7192

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)
7696
end
7797

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)
80100
end
81101

82-
it "fails if expected is not a kind of expected" do
102+
it "fails if matcher does not match" do
83103
expect {
84-
expect("foo").to be_kind_of(Integer)
104+
expect(1).to eql(:bar)
85105
}.to raise_error(Exception)
86106

87107
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")
89129
}.to raise_error(Exception)
90130
end
91131
end

0 commit comments

Comments
 (0)