rspec-expectations 2.3.0 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Guardfile +5 -0
- data/History.markdown +10 -0
- data/Rakefile +2 -2
- data/features/.nav +27 -0
- data/features/README.markdown +26 -2
- data/features/{matchers → built_in_matchers}/be.feature +31 -45
- data/features/{matchers → built_in_matchers}/be_within.feature +0 -0
- data/features/{matchers → built_in_matchers}/equality.feature +1 -1
- data/features/{matchers → built_in_matchers}/exist.feature +0 -0
- data/features/{matchers → built_in_matchers}/expect_change.feature +1 -1
- data/features/{matchers → built_in_matchers}/expect_error.feature +1 -1
- data/features/{matchers → built_in_matchers}/have.feature +0 -0
- data/features/{matchers → built_in_matchers}/include.feature +0 -0
- data/features/{matchers → built_in_matchers}/match.feature +0 -0
- data/features/built_in_matchers/operators.feature +221 -0
- data/features/{matchers → built_in_matchers}/predicates.feature +1 -1
- data/features/{matchers → built_in_matchers}/respond_to.feature +0 -0
- data/features/{matchers → built_in_matchers}/satisfy.feature +1 -1
- data/features/{matchers → built_in_matchers}/throw_symbol.feature +1 -1
- data/features/{matchers → built_in_matchers}/types.feature +0 -0
- data/features/{matchers → custom_matchers}/access_running_example.feature +1 -1
- data/features/{matchers → custom_matchers}/define_diffable_matcher.feature +1 -1
- data/features/{matchers → custom_matchers}/define_matcher.feature +1 -1
- data/features/{matchers → custom_matchers}/define_matcher_outside_rspec.feature +1 -1
- data/features/{matchers → custom_matchers}/define_matcher_with_fluent_interface.feature +1 -1
- data/features/{expectations/customized_message.feature → customized_message.feature} +0 -0
- data/features/{expectations/diffing.feature → diffing.feature} +12 -12
- data/features/{expectations/implicit_docstrings.feature → implicit_docstrings.feature} +0 -0
- data/lib/rspec/expectations/version.rb +1 -1
- data/lib/rspec/matchers/be.rb +4 -4
- data/lib/rspec/matchers/change.rb +25 -19
- data/lib/rspec/matchers/operator_matcher.rb +3 -3
- data/spec/rspec/matchers/be_spec.rb +8 -8
- data/spec/rspec/matchers/operator_matcher_spec.rb +10 -10
- metadata +55 -57
- data/features/expectations/attribute_of_subject.feature +0 -19
- data/features/matchers/operators.feature +0 -280
File without changes
|
File without changes
|
File without changes
|
@@ -24,12 +24,12 @@ Feature: diffing
|
|
24
24
|
When I run "rspec example_spec.rb"
|
25
25
|
Then the output should contain:
|
26
26
|
"""
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
27
|
+
Diff:
|
28
|
+
@@ -1,4 +1,4 @@
|
29
|
+
this is the
|
30
|
+
- expected
|
31
|
+
+ actual
|
32
|
+
string
|
33
33
|
"""
|
34
34
|
|
35
35
|
Scenario: diff for a multiline string and a regexp
|
@@ -50,12 +50,12 @@ Feature: diffing
|
|
50
50
|
When I run "rspec example_spec.rb"
|
51
51
|
Then the output should contain:
|
52
52
|
"""
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
53
|
+
Diff:
|
54
|
+
@@ -1,2 +1,4 @@
|
55
|
+
-/expected/m
|
56
|
+
+this is the
|
57
|
+
+ actual
|
58
|
+
+ string
|
59
59
|
"""
|
60
60
|
|
61
61
|
Scenario: no diff for a single line strings
|
File without changes
|
data/lib/rspec/matchers/be.rb
CHANGED
@@ -2,7 +2,7 @@ require 'rspec/matchers/dsl'
|
|
2
2
|
|
3
3
|
RSpec::Matchers.define :be_true do
|
4
4
|
match do |actual|
|
5
|
-
|
5
|
+
actual
|
6
6
|
end
|
7
7
|
end
|
8
8
|
|
@@ -18,11 +18,11 @@ RSpec::Matchers.define :be_nil do
|
|
18
18
|
end
|
19
19
|
|
20
20
|
failure_message_for_should do |actual|
|
21
|
-
"expected nil
|
21
|
+
"expected: nil\n got: #{actual.inspect}"
|
22
22
|
end
|
23
23
|
|
24
24
|
failure_message_for_should_not do
|
25
|
-
"expected not nil
|
25
|
+
"expected: not nil\n got: nil"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
|
@@ -96,7 +96,7 @@ module RSpec
|
|
96
96
|
end
|
97
97
|
|
98
98
|
def failure_message_for_should
|
99
|
-
"expected #{@operator} #{@expected}
|
99
|
+
"expected: #{@operator} #{@expected.inspect}\n got: #{@operator.to_s.gsub(/./, ' ')} #{@actual.inspect}"
|
100
100
|
end
|
101
101
|
|
102
102
|
def failure_message_for_should_not
|
@@ -123,12 +123,25 @@ MESSAGE
|
|
123
123
|
end
|
124
124
|
|
125
125
|
# :call-seq:
|
126
|
-
# should change(receiver, message
|
127
|
-
# should change(receiver, message
|
128
|
-
# should change(receiver, message
|
129
|
-
# should_not change(receiver, message
|
126
|
+
# should change(receiver, message)
|
127
|
+
# should change(receiver, message).by(value)
|
128
|
+
# should change(receiver, message).from(old).to(new)
|
129
|
+
# should_not change(receiver, message)
|
130
130
|
#
|
131
|
-
#
|
131
|
+
# should change {...}
|
132
|
+
# should change {...}.by(value)
|
133
|
+
# should change {...}.from(old).to(new)
|
134
|
+
# should_not change {...}
|
135
|
+
#
|
136
|
+
# Applied to a proc, specifies that its execution will cause some value to
|
137
|
+
# change.
|
138
|
+
#
|
139
|
+
# You can either pass <tt>receiver</tt> and <tt>message</tt>, or a block,
|
140
|
+
# but not both.
|
141
|
+
#
|
142
|
+
# When passing a block, it must use the <tt>{ ... }</tt> format, not
|
143
|
+
# do/end, as <tt>{ ... }</tt> binds to the +change+ method, whereas do/end
|
144
|
+
# would errantly bind to the +should+ or +should_not+ method.
|
132
145
|
#
|
133
146
|
# == Examples
|
134
147
|
#
|
@@ -161,22 +174,15 @@ MESSAGE
|
|
161
174
|
# employee.develop_great_new_social_networking_app
|
162
175
|
# }.should change(employee, :title).from("Mail Clerk").to("CEO")
|
163
176
|
#
|
164
|
-
#
|
165
|
-
# it evaluates the c object (generated by the lambdas in the examples
|
166
|
-
# above).
|
177
|
+
# == Notes
|
167
178
|
#
|
168
|
-
#
|
169
|
-
#
|
170
|
-
#
|
171
|
-
# == WARNING
|
172
|
-
# <tt>should_not change</tt> only supports the form with no
|
173
|
-
# subsequent calls to <tt>by</tt>, <tt>by_at_least</tt>,
|
174
|
-
# <tt>by_at_most</tt>, <tt>to</tt> or <tt>from</tt>.
|
175
|
-
#
|
176
|
-
# blocks passed to <tt>should</tt> <tt>change</tt> and <tt>should_not</tt>
|
177
|
-
# <tt>change</tt> must use the <tt>{}</tt> form (<tt>do/end</tt> is not
|
178
|
-
# supported).
|
179
|
+
# Evaluates <tt>receiver.message</tt> or <tt>block</tt> before and after it
|
180
|
+
# evaluates the proc object (generated by the lambdas in the examples
|
181
|
+
# above).
|
179
182
|
#
|
183
|
+
# <tt>should_not change</tt> only supports the form with no subsequent
|
184
|
+
# calls to <tt>by</tt>, <tt>by_at_least</tt>, <tt>by_at_most</tt>,
|
185
|
+
# <tt>to</tt> or <tt>from</tt>.
|
180
186
|
def change(receiver=nil, message=nil, &block)
|
181
187
|
Matchers::Change.new(receiver, message, &block)
|
182
188
|
end
|
@@ -67,9 +67,9 @@ module RSpec
|
|
67
67
|
if actual.__send__(operator, expected)
|
68
68
|
true
|
69
69
|
elsif ['==','===', '=~'].include?(operator)
|
70
|
-
fail_with_message("expected: #{expected.inspect}
|
70
|
+
fail_with_message("expected: #{expected.inspect}\n got: #{actual.inspect} (using #{operator})")
|
71
71
|
else
|
72
|
-
fail_with_message("expected: #{operator} #{expected.inspect}
|
72
|
+
fail_with_message("expected: #{operator} #{expected.inspect}\n got: #{operator.gsub(/./, ' ')} #{actual.inspect}")
|
73
73
|
end
|
74
74
|
end
|
75
75
|
|
@@ -78,7 +78,7 @@ module RSpec
|
|
78
78
|
class NegativeOperatorMatcher < OperatorMatcher #:nodoc:
|
79
79
|
def __delegate_operator(actual, operator, expected)
|
80
80
|
return false unless actual.__send__(operator, expected)
|
81
|
-
return fail_with_message("expected not: #{operator} #{expected.inspect}
|
81
|
+
return fail_with_message("expected not: #{operator} #{expected.inspect}\n got: #{operator.gsub(/./, ' ')} #{actual.inspect}")
|
82
82
|
end
|
83
83
|
|
84
84
|
end
|
@@ -269,7 +269,7 @@ describe "should be_nil" do
|
|
269
269
|
it "fails when actual is not nil" do
|
270
270
|
lambda {
|
271
271
|
:not_nil.should be_nil
|
272
|
-
}.should fail_with(
|
272
|
+
}.should fail_with(/^expected: nil/)
|
273
273
|
end
|
274
274
|
end
|
275
275
|
|
@@ -281,7 +281,7 @@ describe "should_not be_nil" do
|
|
281
281
|
it "fails when actual is nil" do
|
282
282
|
lambda {
|
283
283
|
nil.should_not be_nil
|
284
|
-
}.should fail_with(
|
284
|
+
}.should fail_with(/^expected: not nil/)
|
285
285
|
end
|
286
286
|
end
|
287
287
|
|
@@ -291,7 +291,7 @@ describe "should be <" do
|
|
291
291
|
end
|
292
292
|
|
293
293
|
it "fails when < operator returns false" do
|
294
|
-
lambda { 3.should be < 3 }.should fail_with("expected < 3
|
294
|
+
lambda { 3.should be < 3 }.should fail_with("expected: < 3\n got: 3")
|
295
295
|
end
|
296
296
|
|
297
297
|
it "describes itself" do
|
@@ -306,7 +306,7 @@ describe "should be <=" do
|
|
306
306
|
end
|
307
307
|
|
308
308
|
it "fails when <= operator returns false" do
|
309
|
-
lambda { 3.should be <= 2 }.should fail_with("expected <= 2
|
309
|
+
lambda { 3.should be <= 2 }.should fail_with("expected: <= 2\n got: 3")
|
310
310
|
end
|
311
311
|
end
|
312
312
|
|
@@ -317,7 +317,7 @@ describe "should be >=" do
|
|
317
317
|
end
|
318
318
|
|
319
319
|
it "fails when >= operator returns false" do
|
320
|
-
lambda { 3.should be >= 4 }.should fail_with("expected >= 4
|
320
|
+
lambda { 3.should be >= 4 }.should fail_with("expected: >= 4\n got: 3")
|
321
321
|
end
|
322
322
|
end
|
323
323
|
|
@@ -327,7 +327,7 @@ describe "should be >" do
|
|
327
327
|
end
|
328
328
|
|
329
329
|
it "fails when > operator returns false" do
|
330
|
-
lambda { 3.should be > 4 }.should fail_with("expected > 4
|
330
|
+
lambda { 3.should be > 4 }.should fail_with("expected: > 4\n got: 3")
|
331
331
|
end
|
332
332
|
end
|
333
333
|
|
@@ -337,7 +337,7 @@ describe "should be ==" do
|
|
337
337
|
end
|
338
338
|
|
339
339
|
it "fails when == operator returns false" do
|
340
|
-
lambda { 3.should be == 4 }.should fail_with("expected == 4
|
340
|
+
lambda { 3.should be == 4 }.should fail_with("expected: == 4\n got: 3")
|
341
341
|
end
|
342
342
|
end
|
343
343
|
|
@@ -347,7 +347,7 @@ describe "should be ===" do
|
|
347
347
|
end
|
348
348
|
|
349
349
|
it "fails when === operator returns false" do
|
350
|
-
lambda { Hash.should be === "not a hash" }.should fail_with(%[expected === not a hash
|
350
|
+
lambda { Hash.should be === "not a hash" }.should fail_with(%[expected: === "not a hash"\n got: Hash])
|
351
351
|
end
|
352
352
|
end
|
353
353
|
|
@@ -15,7 +15,7 @@ describe "should ==" do
|
|
15
15
|
|
16
16
|
it "fails when target.==(actual) returns false" do
|
17
17
|
subject = "apple"
|
18
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: "orange"
|
18
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: "orange"\n got: "apple" (using ==)], "orange", "apple")
|
19
19
|
subject.should == "orange"
|
20
20
|
end
|
21
21
|
|
@@ -62,7 +62,7 @@ describe "should_not ==" do
|
|
62
62
|
|
63
63
|
it "fails when target.==(actual) returns false" do
|
64
64
|
subject = "apple"
|
65
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: == "apple"
|
65
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: == "apple"\n got: "apple"], "apple", "apple")
|
66
66
|
subject.should_not == "apple"
|
67
67
|
end
|
68
68
|
|
@@ -79,7 +79,7 @@ describe "should ===" do
|
|
79
79
|
it "fails when target.===(actual) returns false" do
|
80
80
|
subject = "apple"
|
81
81
|
subject.should_receive(:===).with("orange").and_return(false)
|
82
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: "orange"
|
82
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: "orange"\n got: "apple" (using ===)], "orange", "apple")
|
83
83
|
subject.should === "orange"
|
84
84
|
end
|
85
85
|
|
@@ -96,7 +96,7 @@ describe "should_not ===" do
|
|
96
96
|
it "fails when target.===(actual) returns false" do
|
97
97
|
subject = "apple"
|
98
98
|
subject.should_receive(:===).with("apple").and_return(true)
|
99
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: === "apple"
|
99
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: === "apple"\n got: "apple"], "apple", "apple")
|
100
100
|
subject.should_not === "apple"
|
101
101
|
end
|
102
102
|
|
@@ -113,7 +113,7 @@ describe "should =~" do
|
|
113
113
|
it "fails when target.=~(actual) returns false" do
|
114
114
|
subject = "fu"
|
115
115
|
subject.should_receive(:=~).with(/oo/).and_return(false)
|
116
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: /oo
|
116
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: /oo/\n got: "fu" (using =~)], /oo/, "fu")
|
117
117
|
subject.should =~ /oo/
|
118
118
|
end
|
119
119
|
|
@@ -130,7 +130,7 @@ describe "should_not =~" do
|
|
130
130
|
it "fails when target.=~(actual) returns false" do
|
131
131
|
subject = "foo"
|
132
132
|
subject.should_receive(:=~).with(/oo/).and_return(true)
|
133
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: =~ /oo
|
133
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected not: =~ /oo/\n got: "foo"], /oo/, "foo")
|
134
134
|
subject.should_not =~ /oo/
|
135
135
|
end
|
136
136
|
|
@@ -143,7 +143,7 @@ describe "should >" do
|
|
143
143
|
end
|
144
144
|
|
145
145
|
it "fails if > fails" do
|
146
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: > 5
|
146
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: > 5\n got: 4], 5, 4)
|
147
147
|
4.should > 5
|
148
148
|
end
|
149
149
|
|
@@ -157,7 +157,7 @@ describe "should >=" do
|
|
157
157
|
end
|
158
158
|
|
159
159
|
it "fails if > fails" do
|
160
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: >= 5
|
160
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: >= 5\n got: 4], 5, 4)
|
161
161
|
4.should >= 5
|
162
162
|
end
|
163
163
|
|
@@ -170,7 +170,7 @@ describe "should <" do
|
|
170
170
|
end
|
171
171
|
|
172
172
|
it "fails if > fails" do
|
173
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: < 3
|
173
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: < 3\n got: 4], 3, 4)
|
174
174
|
4.should < 3
|
175
175
|
end
|
176
176
|
|
@@ -184,7 +184,7 @@ describe "should <=" do
|
|
184
184
|
end
|
185
185
|
|
186
186
|
it "fails if > fails" do
|
187
|
-
RSpec::Expectations.should_receive(:fail_with).with(%[expected: <= 3
|
187
|
+
RSpec::Expectations.should_receive(:fail_with).with(%[expected: <= 3\n got: 4], 3, 4)
|
188
188
|
4.should <= 3
|
189
189
|
end
|
190
190
|
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-expectations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 3
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 2
|
8
|
-
-
|
7
|
+
- 4
|
9
8
|
- 0
|
10
|
-
version: 2.
|
9
|
+
version: 2.4.0
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- David Chelimsky
|
@@ -16,23 +15,22 @@ autorequire:
|
|
16
15
|
bindir: bin
|
17
16
|
cert_chain: []
|
18
17
|
|
19
|
-
date:
|
18
|
+
date: 2011-01-02 00:00:00 -06:00
|
20
19
|
default_executable:
|
21
20
|
dependencies:
|
22
21
|
- !ruby/object:Gem::Dependency
|
22
|
+
name: diff-lcs
|
23
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
24
|
none: false
|
25
25
|
requirements:
|
26
26
|
- - ~>
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
hash: 23
|
29
28
|
segments:
|
30
29
|
- 1
|
31
30
|
- 1
|
32
31
|
- 2
|
33
32
|
version: 1.1.2
|
34
33
|
type: :runtime
|
35
|
-
name: diff-lcs
|
36
34
|
prerelease: false
|
37
35
|
version_requirements: *id001
|
38
36
|
description: rspec expectations (should[_not] and matchers)
|
@@ -47,37 +45,38 @@ files:
|
|
47
45
|
- .document
|
48
46
|
- .gitignore
|
49
47
|
- Gemfile
|
48
|
+
- Guardfile
|
50
49
|
- History.markdown
|
51
50
|
- License.txt
|
52
51
|
- README.md
|
53
52
|
- Rakefile
|
54
53
|
- Upgrade.markdown
|
55
54
|
- cucumber.yml
|
55
|
+
- features/.nav
|
56
56
|
- features/README.markdown
|
57
|
-
- features/
|
58
|
-
- features/
|
59
|
-
- features/
|
60
|
-
- features/
|
61
|
-
- features/
|
62
|
-
- features/
|
63
|
-
- features/
|
64
|
-
- features/
|
65
|
-
- features/
|
66
|
-
- features/
|
67
|
-
- features/
|
68
|
-
- features/
|
69
|
-
- features/
|
70
|
-
- features/
|
71
|
-
- features/
|
72
|
-
- features/
|
73
|
-
- features/
|
74
|
-
- features/
|
75
|
-
- features/
|
76
|
-
- features/
|
77
|
-
- features/
|
78
|
-
- features/
|
79
|
-
- features/
|
80
|
-
- features/matchers/types.feature
|
57
|
+
- features/built_in_matchers/be.feature
|
58
|
+
- features/built_in_matchers/be_within.feature
|
59
|
+
- features/built_in_matchers/equality.feature
|
60
|
+
- features/built_in_matchers/exist.feature
|
61
|
+
- features/built_in_matchers/expect_change.feature
|
62
|
+
- features/built_in_matchers/expect_error.feature
|
63
|
+
- features/built_in_matchers/have.feature
|
64
|
+
- features/built_in_matchers/include.feature
|
65
|
+
- features/built_in_matchers/match.feature
|
66
|
+
- features/built_in_matchers/operators.feature
|
67
|
+
- features/built_in_matchers/predicates.feature
|
68
|
+
- features/built_in_matchers/respond_to.feature
|
69
|
+
- features/built_in_matchers/satisfy.feature
|
70
|
+
- features/built_in_matchers/throw_symbol.feature
|
71
|
+
- features/built_in_matchers/types.feature
|
72
|
+
- features/custom_matchers/access_running_example.feature
|
73
|
+
- features/custom_matchers/define_diffable_matcher.feature
|
74
|
+
- features/custom_matchers/define_matcher.feature
|
75
|
+
- features/custom_matchers/define_matcher_outside_rspec.feature
|
76
|
+
- features/custom_matchers/define_matcher_with_fluent_interface.feature
|
77
|
+
- features/customized_message.feature
|
78
|
+
- features/diffing.feature
|
79
|
+
- features/implicit_docstrings.feature
|
81
80
|
- features/step_definitions/additional_cli_steps.rb
|
82
81
|
- features/support/env.rb
|
83
82
|
- features/test_frameworks/test_unit.feature
|
@@ -173,7 +172,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
173
172
|
requirements:
|
174
173
|
- - ">="
|
175
174
|
- !ruby/object:Gem::Version
|
176
|
-
hash:
|
175
|
+
hash: 2554060302736803438
|
177
176
|
segments:
|
178
177
|
- 0
|
179
178
|
version: "0"
|
@@ -182,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
181
|
requirements:
|
183
182
|
- - ">="
|
184
183
|
- !ruby/object:Gem::Version
|
185
|
-
hash:
|
184
|
+
hash: 2554060302736803438
|
186
185
|
segments:
|
187
186
|
- 0
|
188
187
|
version: "0"
|
@@ -192,33 +191,32 @@ rubyforge_project: rspec
|
|
192
191
|
rubygems_version: 1.3.7
|
193
192
|
signing_key:
|
194
193
|
specification_version: 3
|
195
|
-
summary: rspec-expectations-2.
|
194
|
+
summary: rspec-expectations-2.4.0
|
196
195
|
test_files:
|
197
196
|
- features/README.markdown
|
198
|
-
- features/
|
199
|
-
- features/
|
200
|
-
- features/
|
201
|
-
- features/
|
202
|
-
- features/
|
203
|
-
- features/
|
204
|
-
- features/
|
205
|
-
- features/
|
206
|
-
- features/
|
207
|
-
- features/
|
208
|
-
- features/
|
209
|
-
- features/
|
210
|
-
- features/
|
211
|
-
- features/
|
212
|
-
- features/
|
213
|
-
- features/
|
214
|
-
- features/
|
215
|
-
- features/
|
216
|
-
- features/
|
217
|
-
- features/
|
218
|
-
- features/
|
219
|
-
- features/
|
220
|
-
- features/
|
221
|
-
- features/matchers/types.feature
|
197
|
+
- features/built_in_matchers/be.feature
|
198
|
+
- features/built_in_matchers/be_within.feature
|
199
|
+
- features/built_in_matchers/equality.feature
|
200
|
+
- features/built_in_matchers/exist.feature
|
201
|
+
- features/built_in_matchers/expect_change.feature
|
202
|
+
- features/built_in_matchers/expect_error.feature
|
203
|
+
- features/built_in_matchers/have.feature
|
204
|
+
- features/built_in_matchers/include.feature
|
205
|
+
- features/built_in_matchers/match.feature
|
206
|
+
- features/built_in_matchers/operators.feature
|
207
|
+
- features/built_in_matchers/predicates.feature
|
208
|
+
- features/built_in_matchers/respond_to.feature
|
209
|
+
- features/built_in_matchers/satisfy.feature
|
210
|
+
- features/built_in_matchers/throw_symbol.feature
|
211
|
+
- features/built_in_matchers/types.feature
|
212
|
+
- features/custom_matchers/access_running_example.feature
|
213
|
+
- features/custom_matchers/define_diffable_matcher.feature
|
214
|
+
- features/custom_matchers/define_matcher.feature
|
215
|
+
- features/custom_matchers/define_matcher_outside_rspec.feature
|
216
|
+
- features/custom_matchers/define_matcher_with_fluent_interface.feature
|
217
|
+
- features/customized_message.feature
|
218
|
+
- features/diffing.feature
|
219
|
+
- features/implicit_docstrings.feature
|
222
220
|
- features/step_definitions/additional_cli_steps.rb
|
223
221
|
- features/support/env.rb
|
224
222
|
- features/test_frameworks/test_unit.feature
|