summaryrefslogtreecommitdiff
path: root/spec/mspec/spec/matchers/base_spec.rb
blob: cc13c29d1d57a937f276ba975f40dc63ce5de12d (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
require 'spec_helper'
require 'mspec/expectations/expectations'
require 'mspec/matchers'
require 'time'

describe SpecPositiveOperatorMatcher, "== operator" do
  it "raises an SpecExpectationNotMetError when expected == actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new(1) == 2
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x to equal y'" do
    SpecExpectation.should_receive(:fail_with).with("Expected 1\n", "to equal 2\n")
    SpecPositiveOperatorMatcher.new(1) == 2
  end

  it "does not raise an exception when expected == actual returns true" do
    SpecPositiveOperatorMatcher.new(1) == 1
  end
end

describe SpecPositiveOperatorMatcher, "=~ operator" do
  it "raises an SpecExpectationNotMetError when expected =~ actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new('real') =~ /fake/
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected \"x\" to match y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected \"real\"\n", "to match /fake/\n")
    SpecPositiveOperatorMatcher.new('real') =~ /fake/
  end

  it "does not raise an exception when expected =~ actual returns true" do
    SpecPositiveOperatorMatcher.new('real') =~ /real/
  end
end

describe SpecPositiveOperatorMatcher, "> operator" do
  it "raises an SpecExpectationNotMetError when expected > actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new(4) > 5
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x to be greater than y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 4\n", "to be greater than 5\n")
    SpecPositiveOperatorMatcher.new(4) > 5
  end

  it "does not raise an exception when expected > actual returns true" do
    SpecPositiveOperatorMatcher.new(5) > 4
  end
end

describe SpecPositiveOperatorMatcher, ">= operator" do
  it "raises an SpecExpectationNotMetError when expected >= actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new(4) >= 5
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x to be greater than or equal to y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 4\n", "to be greater than or equal to 5\n")
    SpecPositiveOperatorMatcher.new(4) >= 5
  end

  it "does not raise an exception when expected > actual returns true" do
    SpecPositiveOperatorMatcher.new(5) >= 4
    SpecPositiveOperatorMatcher.new(5) >= 5
  end
end

describe SpecPositiveOperatorMatcher, "< operater" do
  it "raises an SpecExpectationNotMetError when expected < actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new(5) < 4
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x to be less than y'" do
    SpecExpectation.should_receive(:fail_with).with("Expected 5\n", "to be less than 4\n")
    SpecPositiveOperatorMatcher.new(5) < 4
  end

  it "does not raise an exception when expected < actual returns true" do
    SpecPositiveOperatorMatcher.new(4) < 5
  end
end

describe SpecPositiveOperatorMatcher, "<= operater" do
  it "raises an SpecExpectationNotMetError when expected < actual returns false" do
    lambda {
      SpecPositiveOperatorMatcher.new(5) <= 4
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x to be less than or equal to y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 5\n", "to be less than or equal to 4\n")
    SpecPositiveOperatorMatcher.new(5) <= 4
  end

  it "does not raise an exception when expected < actual returns true" do
    SpecPositiveOperatorMatcher.new(4) <= 5
    SpecPositiveOperatorMatcher.new(4) <= 4
  end
end

describe SpecNegativeOperatorMatcher, "== operator" do
  it "raises an SpecExpectationNotMetError when expected == actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new(1) == 1
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x not to equal y'" do
    SpecExpectation.should_receive(:fail_with).with("Expected 1\n", "not to equal 1\n")
    SpecNegativeOperatorMatcher.new(1) == 1
  end

  it "does not raise an exception when expected == actual returns false" do
    SpecNegativeOperatorMatcher.new(1) == 2
  end
end

describe SpecNegativeOperatorMatcher, "=~ operator" do
  it "raises an SpecExpectationNotMetError when expected =~ actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new('real') =~ /real/
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected \"x\" not to match /y/'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected \"real\"\n", "not to match /real/\n")
    SpecNegativeOperatorMatcher.new('real') =~ /real/
  end

  it "does not raise an exception when expected =~ actual returns false" do
    SpecNegativeOperatorMatcher.new('real') =~ /fake/
  end
end

describe SpecNegativeOperatorMatcher, "< operator" do
  it "raises an SpecExpectationNotMetError when expected < actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new(4) < 5
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x not to be less than y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 4\n", "not to be less than 5\n")
    SpecNegativeOperatorMatcher.new(4) < 5
  end

  it "does not raise an exception when expected < actual returns false" do
    SpecNegativeOperatorMatcher.new(5) < 4
  end
end

describe SpecNegativeOperatorMatcher, "<= operator" do
  it "raises an SpecExpectationNotMetError when expected <= actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new(4) <= 5
    }.should raise_error(SpecExpectationNotMetError)
    lambda {
      SpecNegativeOperatorMatcher.new(5) <= 5
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x not to be less than or equal to y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 4\n", "not to be less than or equal to 5\n")
    SpecNegativeOperatorMatcher.new(4) <= 5
  end

  it "does not raise an exception when expected <= actual returns false" do
    SpecNegativeOperatorMatcher.new(5) <= 4
  end
end

describe SpecNegativeOperatorMatcher, "> operator" do
  it "raises an SpecExpectationNotMetError when expected > actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new(5) > 4
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x not to be greater than y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 5\n", "not to be greater than 4\n")
    SpecNegativeOperatorMatcher.new(5) > 4
  end

  it "does not raise an exception when expected > actual returns false" do
    SpecNegativeOperatorMatcher.new(4) > 5
  end
end

describe SpecNegativeOperatorMatcher, ">= operator" do
  it "raises an SpecExpectationNotMetError when expected >= actual returns true" do
    lambda {
      SpecNegativeOperatorMatcher.new(5) >= 4
    }.should raise_error(SpecExpectationNotMetError)
    lambda {
      SpecNegativeOperatorMatcher.new(5) >= 5
    }.should raise_error(SpecExpectationNotMetError)
  end

  it "provides a failure message that 'Expected x not to be greater than or equal to y'" do
    SpecExpectation.should_receive(:fail_with).with(
      "Expected 5\n", "not to be greater than or equal to 4\n")
    SpecNegativeOperatorMatcher.new(5) >= 4
  end

  it "does not raise an exception when expected >= actual returns false" do
    SpecNegativeOperatorMatcher.new(4) >= 5
  end
end