rspec-expectations 2.3.0 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. data/Guardfile +5 -0
  2. data/History.markdown +10 -0
  3. data/Rakefile +2 -2
  4. data/features/.nav +27 -0
  5. data/features/README.markdown +26 -2
  6. data/features/{matchers → built_in_matchers}/be.feature +31 -45
  7. data/features/{matchers → built_in_matchers}/be_within.feature +0 -0
  8. data/features/{matchers → built_in_matchers}/equality.feature +1 -1
  9. data/features/{matchers → built_in_matchers}/exist.feature +0 -0
  10. data/features/{matchers → built_in_matchers}/expect_change.feature +1 -1
  11. data/features/{matchers → built_in_matchers}/expect_error.feature +1 -1
  12. data/features/{matchers → built_in_matchers}/have.feature +0 -0
  13. data/features/{matchers → built_in_matchers}/include.feature +0 -0
  14. data/features/{matchers → built_in_matchers}/match.feature +0 -0
  15. data/features/built_in_matchers/operators.feature +221 -0
  16. data/features/{matchers → built_in_matchers}/predicates.feature +1 -1
  17. data/features/{matchers → built_in_matchers}/respond_to.feature +0 -0
  18. data/features/{matchers → built_in_matchers}/satisfy.feature +1 -1
  19. data/features/{matchers → built_in_matchers}/throw_symbol.feature +1 -1
  20. data/features/{matchers → built_in_matchers}/types.feature +0 -0
  21. data/features/{matchers → custom_matchers}/access_running_example.feature +1 -1
  22. data/features/{matchers → custom_matchers}/define_diffable_matcher.feature +1 -1
  23. data/features/{matchers → custom_matchers}/define_matcher.feature +1 -1
  24. data/features/{matchers → custom_matchers}/define_matcher_outside_rspec.feature +1 -1
  25. data/features/{matchers → custom_matchers}/define_matcher_with_fluent_interface.feature +1 -1
  26. data/features/{expectations/customized_message.feature → customized_message.feature} +0 -0
  27. data/features/{expectations/diffing.feature → diffing.feature} +12 -12
  28. data/features/{expectations/implicit_docstrings.feature → implicit_docstrings.feature} +0 -0
  29. data/lib/rspec/expectations/version.rb +1 -1
  30. data/lib/rspec/matchers/be.rb +4 -4
  31. data/lib/rspec/matchers/change.rb +25 -19
  32. data/lib/rspec/matchers/operator_matcher.rb +3 -3
  33. data/spec/rspec/matchers/be_spec.rb +8 -8
  34. data/spec/rspec/matchers/operator_matcher_spec.rb +10 -10
  35. metadata +55 -57
  36. data/features/expectations/attribute_of_subject.feature +0 -19
  37. data/features/matchers/operators.feature +0 -280
@@ -1,4 +1,4 @@
1
- Feature: Predicate matchers
1
+ Feature: predicate matchers
2
2
 
3
3
  Ruby objects commonly provide predicate methods:
4
4
 
@@ -1,4 +1,4 @@
1
- Feature: Satisfy matcher
1
+ Feature: satisfy matcher
2
2
 
3
3
  The satisfy matcher is extremely flexible and can handle almost anything
4
4
  you want to specify. It passes if the block you provide returns true:
@@ -1,4 +1,4 @@
1
- Feature: Throw symbol matcher
1
+ Feature: throw_symbol matcher
2
2
 
3
3
  The throw_symbol matcher is used to specify that a block of code
4
4
  throws a symbol. The most basic form passes if any symbol is thrown:
@@ -1,4 +1,4 @@
1
- Feature: Access running example
1
+ Feature: access running example
2
2
 
3
3
  In order to take advantage of services that are available
4
4
  in my examples when I'm writing matchers
@@ -1,4 +1,4 @@
1
- Feature: Define diffable matcher
1
+ Feature: define diffable matcher
2
2
 
3
3
  When a matcher is defined as diffable, and the --diff
4
4
  flag is set, the output will include a diff of the submitted
@@ -1,4 +1,4 @@
1
- Feature: Define matcher
1
+ Feature: define matcher
2
2
 
3
3
  In order to express my domain clearly in my code examples
4
4
  As an RSpec user
@@ -1,4 +1,4 @@
1
- Feature: Define matcher outside rspec
1
+ Feature: define matcher outside rspec
2
2
 
3
3
  In order to express my domain clearly in my code examples
4
4
  As a non-rspec user
@@ -1,4 +1,4 @@
1
- Feature: Define matcher with fluent interface
1
+ Feature: define matcher with fluent interface
2
2
 
3
3
  Use the chain() method to define matchers with a fluent interface.
4
4
 
@@ -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
- Diff:
28
- @@ -1,4 +1,4 @@
29
- this is the
30
- - expected
31
- + actual
32
- string
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
- Diff:
54
- @@ -1,2 +1,4 @@
55
- -/expected/m
56
- +this is the
57
- + actual
58
- + string
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
@@ -1,7 +1,7 @@
1
1
  module RSpec # :nodoc:
2
2
  module Expectations # :nodoc:
3
3
  module Version # :nodoc:
4
- STRING = '2.3.0'
4
+ STRING = '2.4.0'
5
5
  end
6
6
  end
7
7
  end
@@ -2,7 +2,7 @@ require 'rspec/matchers/dsl'
2
2
 
3
3
  RSpec::Matchers.define :be_true do
4
4
  match do |actual|
5
- !!actual
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, got #{actual.inspect}"
21
+ "expected: nil\n got: #{actual.inspect}"
22
22
  end
23
23
 
24
24
  failure_message_for_should_not do
25
- "expected not nil, got 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}, got #{@actual.inspect}"
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, &block)
127
- # should change(receiver, message, &block).by(value)
128
- # should change(receiver, message, &block).from(old).to(new)
129
- # should_not change(receiver, message, &block)
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
- # Allows you to specify that a Proc will cause some value to change.
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
- # Evaluates <tt>receiver.message</tt> or <tt>block</tt> before and after
165
- # it evaluates the c object (generated by the lambdas in the examples
166
- # above).
177
+ # == Notes
167
178
  #
168
- # Then compares the values before and after the <tt>receiver.message</tt>
169
- # and evaluates the difference compared to the expected difference.
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},\n got: #{actual.inspect} (using #{operator})")
70
+ fail_with_message("expected: #{expected.inspect}\n got: #{actual.inspect} (using #{operator})")
71
71
  else
72
- fail_with_message("expected: #{operator} #{expected.inspect},\n got: #{operator.gsub(/./, ' ')} #{actual.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},\n got: #{operator.gsub(/./, ' ')} #{actual.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("expected nil, got :not_nil")
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("expected not nil, got nil")
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, got 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, got 3")
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, got 3")
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, got 3")
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, got 3")
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, got 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",\n got: "apple" (using ==)], "orange", "apple")
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",\n got: "apple"], "apple", "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",\n got: "apple" (using ===)], "orange", "apple")
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",\n got: "apple"], "apple", "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/,\n got: "fu" (using =~)], /oo/, "fu")
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/,\n got: "foo"], /oo/, "foo")
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,\n got: 4], 5, 4)
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,\n got: 4], 5, 4)
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,\n got: 4], 3, 4)
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,\n got: 4], 3, 4)
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
- - 3
7
+ - 4
9
8
  - 0
10
- version: 2.3.0
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: 2010-12-12 00:00:00 -06:00
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/expectations/attribute_of_subject.feature
58
- - features/expectations/customized_message.feature
59
- - features/expectations/diffing.feature
60
- - features/expectations/implicit_docstrings.feature
61
- - features/matchers/access_running_example.feature
62
- - features/matchers/be.feature
63
- - features/matchers/be_within.feature
64
- - features/matchers/define_diffable_matcher.feature
65
- - features/matchers/define_matcher.feature
66
- - features/matchers/define_matcher_outside_rspec.feature
67
- - features/matchers/define_matcher_with_fluent_interface.feature
68
- - features/matchers/equality.feature
69
- - features/matchers/exist.feature
70
- - features/matchers/expect_change.feature
71
- - features/matchers/expect_error.feature
72
- - features/matchers/have.feature
73
- - features/matchers/include.feature
74
- - features/matchers/match.feature
75
- - features/matchers/operators.feature
76
- - features/matchers/predicates.feature
77
- - features/matchers/respond_to.feature
78
- - features/matchers/satisfy.feature
79
- - features/matchers/throw_symbol.feature
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: 3
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: 3
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.3.0
194
+ summary: rspec-expectations-2.4.0
196
195
  test_files:
197
196
  - features/README.markdown
198
- - features/expectations/attribute_of_subject.feature
199
- - features/expectations/customized_message.feature
200
- - features/expectations/diffing.feature
201
- - features/expectations/implicit_docstrings.feature
202
- - features/matchers/access_running_example.feature
203
- - features/matchers/be.feature
204
- - features/matchers/be_within.feature
205
- - features/matchers/define_diffable_matcher.feature
206
- - features/matchers/define_matcher.feature
207
- - features/matchers/define_matcher_outside_rspec.feature
208
- - features/matchers/define_matcher_with_fluent_interface.feature
209
- - features/matchers/equality.feature
210
- - features/matchers/exist.feature
211
- - features/matchers/expect_change.feature
212
- - features/matchers/expect_error.feature
213
- - features/matchers/have.feature
214
- - features/matchers/include.feature
215
- - features/matchers/match.feature
216
- - features/matchers/operators.feature
217
- - features/matchers/predicates.feature
218
- - features/matchers/respond_to.feature
219
- - features/matchers/satisfy.feature
220
- - features/matchers/throw_symbol.feature
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