rspec-expectations 3.0.0.beta1 → 3.0.0.beta2
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.tar.gz.sig +2 -2
- data/.yardopts +1 -0
- data/Changelog.md +138 -0
- data/README.md +75 -8
- data/features/README.md +2 -2
- data/features/built_in_matchers/README.md +12 -9
- data/features/built_in_matchers/comparisons.feature +2 -2
- data/features/built_in_matchers/contain_exactly.feature +46 -0
- data/features/built_in_matchers/expect_change.feature +2 -2
- data/features/built_in_matchers/include.feature +0 -48
- data/features/built_in_matchers/output.feature +70 -0
- data/features/composing_matchers.feature +250 -0
- data/features/compound_expectations.feature +45 -0
- data/features/custom_matchers/access_running_example.feature +1 -1
- data/features/custom_matchers/define_matcher.feature +6 -6
- data/features/custom_matchers/define_matcher_outside_rspec.feature +4 -8
- data/features/test_frameworks/{test_unit.feature → minitest.feature} +11 -11
- data/lib/rspec/expectations.rb +31 -42
- data/lib/rspec/expectations/diff_presenter.rb +141 -0
- data/lib/rspec/expectations/differ.rb +22 -132
- data/lib/rspec/expectations/encoded_string.rb +56 -0
- data/lib/rspec/expectations/expectation_target.rb +0 -30
- data/lib/rspec/expectations/fail_with.rb +2 -2
- data/lib/rspec/expectations/handler.rb +128 -31
- data/lib/rspec/expectations/minitest_integration.rb +16 -0
- data/lib/rspec/expectations/syntax.rb +4 -58
- data/lib/rspec/expectations/version.rb +1 -1
- data/lib/rspec/matchers.rb +298 -60
- data/lib/rspec/matchers/aliased_matcher.rb +35 -0
- data/lib/rspec/matchers/built_in.rb +37 -33
- data/lib/rspec/matchers/built_in/base_matcher.rb +25 -15
- data/lib/rspec/matchers/built_in/be.rb +23 -31
- data/lib/rspec/matchers/built_in/be_between.rb +55 -0
- data/lib/rspec/matchers/built_in/be_within.rb +15 -11
- data/lib/rspec/matchers/built_in/change.rb +198 -81
- data/lib/rspec/matchers/built_in/compound.rb +106 -0
- data/lib/rspec/matchers/built_in/contain_exactly.rb +245 -0
- data/lib/rspec/matchers/built_in/eq.rb +43 -4
- data/lib/rspec/matchers/built_in/eql.rb +2 -2
- data/lib/rspec/matchers/built_in/equal.rb +35 -18
- data/lib/rspec/matchers/built_in/has.rb +16 -15
- data/lib/rspec/matchers/built_in/include.rb +45 -23
- data/lib/rspec/matchers/built_in/match.rb +6 -3
- data/lib/rspec/matchers/built_in/operators.rb +103 -0
- data/lib/rspec/matchers/built_in/output.rb +108 -0
- data/lib/rspec/matchers/built_in/raise_error.rb +9 -15
- data/lib/rspec/matchers/built_in/respond_to.rb +5 -4
- data/lib/rspec/matchers/built_in/satisfy.rb +4 -3
- data/lib/rspec/matchers/built_in/start_and_end_with.rb +37 -16
- data/lib/rspec/matchers/built_in/throw_symbol.rb +6 -5
- data/lib/rspec/matchers/built_in/yield.rb +31 -29
- data/lib/rspec/matchers/composable.rb +138 -0
- data/lib/rspec/matchers/dsl.rb +330 -0
- data/lib/rspec/matchers/generated_descriptions.rb +6 -6
- data/lib/rspec/matchers/matcher_delegator.rb +33 -0
- data/lib/rspec/matchers/pretty.rb +13 -2
- data/spec/rspec/expectations/{differ_spec.rb → diff_presenter_spec.rb} +56 -36
- data/spec/rspec/expectations/encoded_string_spec.rb +74 -0
- data/spec/rspec/expectations/extensions/kernel_spec.rb +11 -11
- data/spec/rspec/expectations/fail_with_spec.rb +8 -8
- data/spec/rspec/expectations/handler_spec.rb +27 -49
- data/spec/rspec/expectations/minitest_integration_spec.rb +27 -0
- data/spec/rspec/expectations/syntax_spec.rb +17 -67
- data/spec/rspec/expectations_spec.rb +7 -52
- data/spec/rspec/matchers/aliased_matcher_spec.rb +48 -0
- data/spec/rspec/matchers/aliases_spec.rb +449 -0
- data/spec/rspec/matchers/{base_matcher_spec.rb → built_in/base_matcher_spec.rb} +24 -3
- data/spec/rspec/matchers/built_in/be_between_spec.rb +159 -0
- data/spec/rspec/matchers/{be_instance_of_spec.rb → built_in/be_instance_of_spec.rb} +0 -0
- data/spec/rspec/matchers/{be_kind_of_spec.rb → built_in/be_kind_of_spec.rb} +0 -0
- data/spec/rspec/matchers/{be_spec.rb → built_in/be_spec.rb} +76 -32
- data/spec/rspec/matchers/{be_within_spec.rb → built_in/be_within_spec.rb} +6 -2
- data/spec/rspec/matchers/{change_spec.rb → built_in/change_spec.rb} +310 -69
- data/spec/rspec/matchers/built_in/compound_spec.rb +292 -0
- data/spec/rspec/matchers/built_in/contain_exactly_spec.rb +441 -0
- data/spec/rspec/matchers/{cover_spec.rb → built_in/cover_spec.rb} +0 -0
- data/spec/rspec/matchers/built_in/eq_spec.rb +156 -0
- data/spec/rspec/matchers/{eql_spec.rb → built_in/eql_spec.rb} +2 -2
- data/spec/rspec/matchers/built_in/equal_spec.rb +106 -0
- data/spec/rspec/matchers/{exist_spec.rb → built_in/exist_spec.rb} +1 -1
- data/spec/rspec/matchers/{has_spec.rb → built_in/has_spec.rb} +39 -0
- data/spec/rspec/matchers/{include_spec.rb → built_in/include_spec.rb} +118 -109
- data/spec/rspec/matchers/{match_spec.rb → built_in/match_spec.rb} +30 -2
- data/spec/rspec/matchers/{operator_matcher_spec.rb → built_in/operators_spec.rb} +26 -26
- data/spec/rspec/matchers/built_in/output_spec.rb +165 -0
- data/spec/rspec/matchers/{raise_error_spec.rb → built_in/raise_error_spec.rb} +81 -11
- data/spec/rspec/matchers/{respond_to_spec.rb → built_in/respond_to_spec.rb} +0 -0
- data/spec/rspec/matchers/{satisfy_spec.rb → built_in/satisfy_spec.rb} +0 -0
- data/spec/rspec/matchers/{start_with_end_with_spec.rb → built_in/start_and_end_with_spec.rb} +82 -15
- data/spec/rspec/matchers/{throw_symbol_spec.rb → built_in/throw_symbol_spec.rb} +29 -10
- data/spec/rspec/matchers/{yield_spec.rb → built_in/yield_spec.rb} +90 -0
- data/spec/rspec/matchers/configuration_spec.rb +7 -39
- data/spec/rspec/matchers/description_generation_spec.rb +22 -6
- data/spec/rspec/matchers/dsl_spec.rb +838 -0
- data/spec/rspec/matchers/legacy_spec.rb +101 -0
- data/spec/rspec/matchers_spec.rb +74 -0
- data/spec/spec_helper.rb +35 -21
- data/spec/support/shared_examples.rb +26 -4
- metadata +172 -116
- metadata.gz.sig +3 -4
- checksums.yaml +0 -15
- checksums.yaml.gz.sig +0 -0
- data/features/built_in_matchers/match_array.feature +0 -37
- data/lib/rspec/expectations/errors.rb +0 -9
- data/lib/rspec/expectations/extensions.rb +0 -1
- data/lib/rspec/expectations/extensions/object.rb +0 -29
- data/lib/rspec/matchers/built_in/match_array.rb +0 -51
- data/lib/rspec/matchers/compatibility.rb +0 -14
- data/lib/rspec/matchers/matcher.rb +0 -301
- data/lib/rspec/matchers/method_missing.rb +0 -12
- data/lib/rspec/matchers/operator_matcher.rb +0 -99
- data/lib/rspec/matchers/test_unit_integration.rb +0 -11
- data/spec/rspec/matchers/eq_spec.rb +0 -60
- data/spec/rspec/matchers/equal_spec.rb +0 -78
- data/spec/rspec/matchers/include_matcher_integration_spec.rb +0 -30
- data/spec/rspec/matchers/match_array_spec.rb +0 -194
- data/spec/rspec/matchers/matcher_spec.rb +0 -706
- data/spec/rspec/matchers/matchers_spec.rb +0 -36
- data/spec/rspec/matchers/method_missing_spec.rb +0 -28
- data/spec/support/classes.rb +0 -56
- data/spec/support/in_sub_process.rb +0 -37
- data/spec/support/ruby_version.rb +0 -10
@@ -0,0 +1,101 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
module RSpec
|
4
|
+
module Matchers
|
5
|
+
describe "Legacy matchers" do
|
6
|
+
shared_examples_for "a matcher written against a legacy protocol" do |matcher_class|
|
7
|
+
matcher = matcher_class.new
|
8
|
+
before { allow_deprecation }
|
9
|
+
|
10
|
+
backwards_compat_matcher = Class.new(matcher_class) do
|
11
|
+
def failure_message; "failure when positive"; end
|
12
|
+
def failure_message_when_negated; "failure when negative"; end
|
13
|
+
end.new
|
14
|
+
|
15
|
+
it 'is still considered to be a matcher' do
|
16
|
+
expect(Matchers.is_a_matcher?(matcher)).to be true
|
17
|
+
end
|
18
|
+
|
19
|
+
context 'when matched positively' do
|
20
|
+
it 'returns the positive expectation failure message' do
|
21
|
+
expect {
|
22
|
+
expect(false).to matcher
|
23
|
+
}.to fail_with("failure when positive")
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'warns about the deprecated protocol' do
|
27
|
+
expect_warn_deprecation_with_call_site(__FILE__, __LINE__ + 1, /legacy\s+RSpec\s+matcher/)
|
28
|
+
expect(true).to matcher
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'does not warn when it also defines the current methods (i.e. to be compatible on multiple RSpec versions)' do
|
32
|
+
expect_no_deprecations
|
33
|
+
|
34
|
+
expect {
|
35
|
+
expect(false).to backwards_compat_matcher
|
36
|
+
}.to fail_with("failure when positive")
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
context 'when matched negatively' do
|
41
|
+
it 'returns the negative expectation failure message' do
|
42
|
+
expect {
|
43
|
+
expect(true).not_to matcher
|
44
|
+
}.to fail_with("failure when negative")
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'warns about the deprecated protocol' do
|
48
|
+
expect_warn_deprecation_with_call_site(__FILE__, __LINE__ + 1, /legacy\s+RSpec\s+matcher/)
|
49
|
+
expect(false).not_to matcher
|
50
|
+
end
|
51
|
+
|
52
|
+
it 'does not warn when it also defines the current methods (i.e. to be compatible on multiple RSpec versions)' do
|
53
|
+
expect_no_deprecations
|
54
|
+
|
55
|
+
expect {
|
56
|
+
expect(true).not_to backwards_compat_matcher
|
57
|
+
}.to fail_with("failure when negative")
|
58
|
+
end
|
59
|
+
|
60
|
+
def pending_on_rbx
|
61
|
+
return unless defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
62
|
+
pending "intermittently fails on RBX due to https://github.com/rubinius/rubinius/issues/2845"
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'calls `does_not_match?` if it is defined on the matcher' do
|
66
|
+
pending_on_rbx
|
67
|
+
|
68
|
+
called = false
|
69
|
+
with_does_not_match = Class.new(matcher_class) do
|
70
|
+
define_method(:does_not_match?) { |actual| called = true; !actual }
|
71
|
+
end.new
|
72
|
+
|
73
|
+
expect(false).not_to with_does_not_match
|
74
|
+
expect(called).to be true
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
context "written using the RSpec 2.x `failure_message_for_should` and `failure_message_for_should_not` protocol" do
|
80
|
+
matcher_class = Class.new do
|
81
|
+
def matches?(actual); actual; end
|
82
|
+
def failure_message_for_should; "failure when positive"; end
|
83
|
+
def failure_message_for_should_not; "failure when negative"; end
|
84
|
+
end
|
85
|
+
|
86
|
+
it_behaves_like "a matcher written against a legacy protocol", matcher_class
|
87
|
+
end
|
88
|
+
|
89
|
+
context "written using the older `failure_message` and `negative_failure_message` protocol" do
|
90
|
+
matcher_class = Class.new do
|
91
|
+
def matches?(actual); actual; end
|
92
|
+
def failure_message; "failure when positive"; end
|
93
|
+
def negative_failure_message; "failure when negative"; end
|
94
|
+
end
|
95
|
+
|
96
|
+
it_behaves_like "a matcher written against a legacy protocol", matcher_class
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
@@ -0,0 +1,74 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
main = self
|
4
|
+
describe RSpec::Matchers do
|
5
|
+
include ::RSpec::Support::InSubProcess
|
6
|
+
|
7
|
+
it 'can be mixed into `main`' do
|
8
|
+
in_sub_process do
|
9
|
+
main.instance_eval do
|
10
|
+
include RSpec::Matchers
|
11
|
+
expect(3).to eq(3)
|
12
|
+
expect(3).to be_odd
|
13
|
+
|
14
|
+
expect {
|
15
|
+
expect(4).to be_zero
|
16
|
+
}.to fail_with("expected zero? to return true, got false")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
module RSpec
|
23
|
+
module Matchers
|
24
|
+
describe "built in matchers" do
|
25
|
+
let(:matchers) do
|
26
|
+
BuiltIn.constants.map { |n| BuiltIn.const_get(n) }.select do |m|
|
27
|
+
m.method_defined?(:matches?) && m.method_defined?(:failure_message)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
specify "they all have defined #=== so they can be composable" do
|
32
|
+
missing_threequals = matchers.select do |m|
|
33
|
+
m.instance_method(:===).owner == ::Kernel
|
34
|
+
end
|
35
|
+
|
36
|
+
# This spec is merely to make sure we don't forget to make
|
37
|
+
# a built-in matcher implement `===`. It doesn't check the
|
38
|
+
# semantics of that. Use the "an RSpec matcher" shared
|
39
|
+
# example group to actually check the semantics.
|
40
|
+
expect(missing_threequals).to eq([])
|
41
|
+
end
|
42
|
+
|
43
|
+
specify "they all have defined #and and #or so they support compound expectations" do
|
44
|
+
noncompound_matchers = matchers.reject do |m|
|
45
|
+
m.method_defined?(:and) || m.method_defined?(:or)
|
46
|
+
end
|
47
|
+
|
48
|
+
expect(noncompound_matchers).to eq([])
|
49
|
+
end
|
50
|
+
|
51
|
+
shared_examples_for "a well-behaved method_missing hook" do
|
52
|
+
include MinitestIntegration
|
53
|
+
|
54
|
+
it "raises a NoMethodError (and not SystemStackError) for an undefined method" do
|
55
|
+
with_minitest_loaded do
|
56
|
+
expect { subject.some_undefined_method }.to raise_error(NoMethodError)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
describe "RSpec::Matchers method_missing hook" do
|
62
|
+
subject { self }
|
63
|
+
|
64
|
+
it_behaves_like "a well-behaved method_missing hook"
|
65
|
+
|
66
|
+
context 'when invoked in a Minitest::Test' do
|
67
|
+
subject { Minitest::Test.allocate }
|
68
|
+
it_behaves_like "a well-behaved method_missing hook"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
data/spec/spec_helper.rb
CHANGED
@@ -1,34 +1,31 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
add_filter '/bundle/'
|
6
|
-
add_filter '/spec/'
|
7
|
-
add_filter '/tmp/'
|
8
|
-
end
|
1
|
+
require 'rspec/support/spec'
|
2
|
+
|
3
|
+
RSpec::Support::Spec.setup_simplecov do
|
4
|
+
minimum_coverage 97
|
9
5
|
end
|
10
6
|
|
11
7
|
Dir['./spec/support/**/*'].each {|f| require f}
|
12
8
|
|
13
|
-
module
|
14
|
-
def
|
15
|
-
|
16
|
-
expect(options[:call_site]).to include([file, line].join(':'))
|
17
|
-
end
|
9
|
+
module FormattingSupport
|
10
|
+
def dedent(string)
|
11
|
+
string.gsub(/^\s+\|/, '').chomp
|
18
12
|
end
|
19
13
|
end
|
20
14
|
|
21
15
|
RSpec::configure do |config|
|
22
|
-
config.include DeprecationHelpers
|
23
16
|
config.color_enabled = true
|
24
|
-
config.filter_run :focused
|
25
|
-
config.run_all_when_everything_filtered = true
|
26
17
|
config.order = :random
|
27
18
|
|
19
|
+
config.include FormattingSupport
|
20
|
+
|
28
21
|
config.expect_with :rspec do |expectations|
|
29
22
|
$default_expectation_syntax = expectations.syntax
|
30
23
|
expectations.syntax = :expect
|
31
24
|
end
|
25
|
+
|
26
|
+
config.mock_with :rspec do |mocks|
|
27
|
+
mocks.syntax = :expect
|
28
|
+
end
|
32
29
|
end
|
33
30
|
|
34
31
|
shared_context "with #should enabled", :uses_should do
|
@@ -44,6 +41,19 @@ shared_context "with #should enabled", :uses_should do
|
|
44
41
|
end
|
45
42
|
end
|
46
43
|
|
44
|
+
shared_context "with the default expectation syntax" do
|
45
|
+
orig_syntax = nil
|
46
|
+
|
47
|
+
before(:all) do
|
48
|
+
orig_syntax = RSpec::Matchers.configuration.syntax
|
49
|
+
RSpec::Matchers.configuration.reset_syntaxes_to_default
|
50
|
+
end
|
51
|
+
|
52
|
+
after(:all) do
|
53
|
+
RSpec::Matchers.configuration.syntax = orig_syntax
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
47
57
|
|
48
58
|
shared_context "with #should exclusively enabled", :uses_only_should do
|
49
59
|
orig_syntax = nil
|
@@ -58,13 +68,17 @@ shared_context "with #should exclusively enabled", :uses_only_should do
|
|
58
68
|
end
|
59
69
|
end
|
60
70
|
|
61
|
-
|
62
|
-
|
71
|
+
require 'rspec/support/spec/in_sub_process'
|
72
|
+
module MinitestIntegration
|
73
|
+
include ::RSpec::Support::InSubProcess
|
63
74
|
|
64
|
-
def
|
75
|
+
def with_minitest_loaded
|
65
76
|
in_sub_process do
|
66
|
-
|
67
|
-
|
77
|
+
with_isolated_stderr do
|
78
|
+
require 'minitest/autorun'
|
79
|
+
end
|
80
|
+
|
81
|
+
require 'rspec/expectations/minitest_integration'
|
68
82
|
yield
|
69
83
|
end
|
70
84
|
end
|
@@ -2,12 +2,34 @@ shared_examples_for "an RSpec matcher" do |options|
|
|
2
2
|
let(:valid_value) { options.fetch(:valid_value) }
|
3
3
|
let(:invalid_value) { options.fetch(:invalid_value) }
|
4
4
|
|
5
|
-
it '
|
6
|
-
expect(matcher).to eq(
|
5
|
+
it 'preserves the symmetric property of `==`' do
|
6
|
+
expect(matcher).to eq(matcher)
|
7
|
+
expect(matcher).not_to eq(valid_value)
|
8
|
+
expect(valid_value).not_to eq(matcher)
|
7
9
|
end
|
8
10
|
|
9
|
-
it '
|
10
|
-
expect(matcher).
|
11
|
+
it 'matches a valid value when using #=== so it can be composed' do
|
12
|
+
expect(matcher).to be === valid_value
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'does not match an invalid value when using #=== so it can be composed' do
|
16
|
+
expect(matcher).not_to be === invalid_value
|
17
|
+
end
|
18
|
+
|
19
|
+
matcher :always_passes do
|
20
|
+
match { true }
|
21
|
+
end
|
22
|
+
|
23
|
+
matcher :always_fails do
|
24
|
+
match { false }
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'supports compound expectations by chaining `and`' do
|
28
|
+
expect(valid_value).to matcher.and always_passes
|
29
|
+
end
|
30
|
+
|
31
|
+
it 'supports compound expectations by chaining `or`' do
|
32
|
+
expect(valid_value).to matcher.or always_fails
|
11
33
|
end
|
12
34
|
end
|
13
35
|
|
metadata
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-expectations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.beta2
|
5
|
+
prerelease: 6
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Steven Baker
|
@@ -10,75 +11,95 @@ authors:
|
|
10
11
|
autorequire:
|
11
12
|
bindir: bin
|
12
13
|
cert_chain:
|
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
|
-
|
14
|
+
- ! '-----BEGIN CERTIFICATE-----
|
15
|
+
|
16
|
+
MIIDjjCCAnagAwIBAgIBATANBgkqhkiG9w0BAQUFADBGMRIwEAYDVQQDDAlyc3Bl
|
17
|
+
|
18
|
+
Yy1kZXYxGzAZBgoJkiaJk/IsZAEZFgtnb29nbGVnb3VwczETMBEGCgmSJomT8ixk
|
19
|
+
|
20
|
+
ARkWA2NvbTAeFw0xMzExMDcxOTQyNTlaFw0xNDExMDcxOTQyNTlaMEYxEjAQBgNV
|
21
|
+
|
22
|
+
BAMMCXJzcGVjLWRldjEbMBkGCgmSJomT8ixkARkWC2dvb2dsZWdvdXBzMRMwEQYK
|
23
|
+
|
24
|
+
CZImiZPyLGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
|
25
|
+
|
26
|
+
nhCeZouDLXWO55no+EdZNCtjXjfJQ1X9TbPcvBDD29OypIUce2h/VdKXB2gI7ZHs
|
27
|
+
|
28
|
+
F5NkPggslTErGFmWAtIiur7u943RVqHOsyoIsy065F9fCtrykkA+22elvTDha4Iz
|
29
|
+
|
30
|
+
RUCvuhQ3klatYk4jF+cGt1jNONNVdLOiy0bMynvcM7hoVQ2AomwGs+cEOWQ/4dkD
|
31
|
+
|
32
|
+
JcNV3qfzF5QBcTD2372XNM53b25nYVQSX2KH5FF7BhlKyov33bOm2gA9M+mWIujW
|
33
|
+
|
34
|
+
qgkyxVlfrlE+ZBgV3wXn1Cojg1LpTq35yOArgwioyrwwlZZJR9joN9s/nDklfr5A
|
35
|
+
|
36
|
+
+dyETjFc6cmEPWZrt2cJBQIDAQABo4GGMIGDMAkGA1UdEwQCMAAwCwYDVR0PBAQD
|
37
|
+
|
38
|
+
AgSwMB0GA1UdDgQWBBSW+WD7hn1swJ1A7i8tbuFeuNCJCjAkBgNVHREEHTAbgRly
|
39
|
+
|
40
|
+
c3BlYy1kZXZAZ29vZ2xlZ291cHMuY29tMCQGA1UdEgQdMBuBGXJzcGVjLWRldkBn
|
41
|
+
|
42
|
+
b29nbGVnb3Vwcy5jb20wDQYJKoZIhvcNAQEFBQADggEBAH27jAZ8sD7vnXupj6Y+
|
43
|
+
|
44
|
+
BaBdfHtCkFaslLJ0aKuMDIVXwYuKfqoW15cZPDLmSIEBuQFM3lw6d/hEEL4Uo2jZ
|
45
|
+
|
46
|
+
FvtmH5OxifPDzFyUtCL4yp6qgNe/Xf6sDsRg6FmKcpgqCwNOmsViaf0LPSUH/GYQ
|
47
|
+
|
48
|
+
3Teoz8QCaDbD7AKsffT7eDrnbHnKweO1XdemRJC98u/yYxnGzMSWKEsn09etBlZ9
|
49
|
+
|
50
|
+
7H67k5Z3uf6cfLZgToWL6zShzZY3Nun5r73YsNf2/QZOe4UZe4vfGvn6baw53ys9
|
51
|
+
|
52
|
+
1yHC1AcSYpvi2dAbOiHT5iQF+krm4wse8KctXgTNnjMsHEoGKulJS2/sZl90jcCz
|
53
|
+
|
54
|
+
muA=
|
55
|
+
|
56
|
+
-----END CERTIFICATE-----
|
57
|
+
|
58
|
+
'
|
59
|
+
date: 2014-02-18 00:00:00.000000000 Z
|
44
60
|
dependencies:
|
45
61
|
- !ruby/object:Gem::Dependency
|
46
62
|
name: rspec-support
|
47
63
|
requirement: !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
48
65
|
requirements:
|
49
66
|
- - '='
|
50
67
|
- !ruby/object:Gem::Version
|
51
|
-
version: 3.0.0.
|
68
|
+
version: 3.0.0.beta2
|
52
69
|
type: :runtime
|
53
70
|
prerelease: false
|
54
71
|
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
55
73
|
requirements:
|
56
74
|
- - '='
|
57
75
|
- !ruby/object:Gem::Version
|
58
|
-
version: 3.0.0.
|
76
|
+
version: 3.0.0.beta2
|
59
77
|
- !ruby/object:Gem::Dependency
|
60
78
|
name: diff-lcs
|
61
79
|
requirement: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
62
81
|
requirements:
|
63
82
|
- - ! '>='
|
64
83
|
- !ruby/object:Gem::Version
|
65
|
-
version: 1.
|
84
|
+
version: 1.2.0
|
66
85
|
- - <
|
67
86
|
- !ruby/object:Gem::Version
|
68
87
|
version: '2.0'
|
69
88
|
type: :runtime
|
70
89
|
prerelease: false
|
71
90
|
version_requirements: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
72
92
|
requirements:
|
73
93
|
- - ! '>='
|
74
94
|
- !ruby/object:Gem::Version
|
75
|
-
version: 1.
|
95
|
+
version: 1.2.0
|
76
96
|
- - <
|
77
97
|
- !ruby/object:Gem::Version
|
78
98
|
version: '2.0'
|
79
99
|
- !ruby/object:Gem::Dependency
|
80
100
|
name: rake
|
81
101
|
requirement: !ruby/object:Gem::Requirement
|
102
|
+
none: false
|
82
103
|
requirements:
|
83
104
|
- - ~>
|
84
105
|
- !ruby/object:Gem::Version
|
@@ -86,6 +107,7 @@ dependencies:
|
|
86
107
|
type: :development
|
87
108
|
prerelease: false
|
88
109
|
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
none: false
|
89
111
|
requirements:
|
90
112
|
- - ~>
|
91
113
|
- !ruby/object:Gem::Version
|
@@ -93,20 +115,23 @@ dependencies:
|
|
93
115
|
- !ruby/object:Gem::Dependency
|
94
116
|
name: cucumber
|
95
117
|
requirement: !ruby/object:Gem::Requirement
|
118
|
+
none: false
|
96
119
|
requirements:
|
97
120
|
- - ~>
|
98
121
|
- !ruby/object:Gem::Version
|
99
|
-
version: 1.
|
122
|
+
version: '1.3'
|
100
123
|
type: :development
|
101
124
|
prerelease: false
|
102
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
|
+
none: false
|
103
127
|
requirements:
|
104
128
|
- - ~>
|
105
129
|
- !ruby/object:Gem::Version
|
106
|
-
version: 1.
|
130
|
+
version: '1.3'
|
107
131
|
- !ruby/object:Gem::Dependency
|
108
132
|
name: aruba
|
109
133
|
requirement: !ruby/object:Gem::Requirement
|
134
|
+
none: false
|
110
135
|
requirements:
|
111
136
|
- - ~>
|
112
137
|
- !ruby/object:Gem::Version
|
@@ -114,11 +139,29 @@ dependencies:
|
|
114
139
|
type: :development
|
115
140
|
prerelease: false
|
116
141
|
version_requirements: !ruby/object:Gem::Requirement
|
142
|
+
none: false
|
117
143
|
requirements:
|
118
144
|
- - ~>
|
119
145
|
- !ruby/object:Gem::Version
|
120
146
|
version: '0.5'
|
121
|
-
|
147
|
+
- !ruby/object:Gem::Dependency
|
148
|
+
name: minitest
|
149
|
+
requirement: !ruby/object:Gem::Requirement
|
150
|
+
none: false
|
151
|
+
requirements:
|
152
|
+
- - ~>
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '5.2'
|
155
|
+
type: :development
|
156
|
+
prerelease: false
|
157
|
+
version_requirements: !ruby/object:Gem::Requirement
|
158
|
+
none: false
|
159
|
+
requirements:
|
160
|
+
- - ~>
|
161
|
+
- !ruby/object:Gem::Version
|
162
|
+
version: '5.2'
|
163
|
+
description: rspec-expectations provides a simple, readable API to express expected
|
164
|
+
outcomes of a code example.
|
122
165
|
email: rspec@googlegroups.com
|
123
166
|
executables: []
|
124
167
|
extensions: []
|
@@ -126,23 +169,27 @@ extra_rdoc_files: []
|
|
126
169
|
files:
|
127
170
|
- lib/rspec-expectations.rb
|
128
171
|
- lib/rspec/expectations.rb
|
172
|
+
- lib/rspec/expectations/diff_presenter.rb
|
129
173
|
- lib/rspec/expectations/differ.rb
|
130
|
-
- lib/rspec/expectations/
|
174
|
+
- lib/rspec/expectations/encoded_string.rb
|
131
175
|
- lib/rspec/expectations/expectation_target.rb
|
132
|
-
- lib/rspec/expectations/extensions.rb
|
133
|
-
- lib/rspec/expectations/extensions/object.rb
|
134
176
|
- lib/rspec/expectations/fail_with.rb
|
135
177
|
- lib/rspec/expectations/handler.rb
|
178
|
+
- lib/rspec/expectations/minitest_integration.rb
|
136
179
|
- lib/rspec/expectations/syntax.rb
|
137
180
|
- lib/rspec/expectations/version.rb
|
138
181
|
- lib/rspec/matchers.rb
|
182
|
+
- lib/rspec/matchers/aliased_matcher.rb
|
139
183
|
- lib/rspec/matchers/built_in.rb
|
140
184
|
- lib/rspec/matchers/built_in/base_matcher.rb
|
141
185
|
- lib/rspec/matchers/built_in/be.rb
|
186
|
+
- lib/rspec/matchers/built_in/be_between.rb
|
142
187
|
- lib/rspec/matchers/built_in/be_instance_of.rb
|
143
188
|
- lib/rspec/matchers/built_in/be_kind_of.rb
|
144
189
|
- lib/rspec/matchers/built_in/be_within.rb
|
145
190
|
- lib/rspec/matchers/built_in/change.rb
|
191
|
+
- lib/rspec/matchers/built_in/compound.rb
|
192
|
+
- lib/rspec/matchers/built_in/contain_exactly.rb
|
146
193
|
- lib/rspec/matchers/built_in/cover.rb
|
147
194
|
- lib/rspec/matchers/built_in/eq.rb
|
148
195
|
- lib/rspec/matchers/built_in/eql.rb
|
@@ -151,22 +198,20 @@ files:
|
|
151
198
|
- lib/rspec/matchers/built_in/has.rb
|
152
199
|
- lib/rspec/matchers/built_in/include.rb
|
153
200
|
- lib/rspec/matchers/built_in/match.rb
|
154
|
-
- lib/rspec/matchers/built_in/
|
201
|
+
- lib/rspec/matchers/built_in/operators.rb
|
202
|
+
- lib/rspec/matchers/built_in/output.rb
|
155
203
|
- lib/rspec/matchers/built_in/raise_error.rb
|
156
204
|
- lib/rspec/matchers/built_in/respond_to.rb
|
157
205
|
- lib/rspec/matchers/built_in/satisfy.rb
|
158
206
|
- lib/rspec/matchers/built_in/start_and_end_with.rb
|
159
207
|
- lib/rspec/matchers/built_in/throw_symbol.rb
|
160
208
|
- lib/rspec/matchers/built_in/yield.rb
|
161
|
-
- lib/rspec/matchers/
|
209
|
+
- lib/rspec/matchers/composable.rb
|
162
210
|
- lib/rspec/matchers/configuration.rb
|
163
211
|
- lib/rspec/matchers/dsl.rb
|
164
212
|
- lib/rspec/matchers/generated_descriptions.rb
|
165
|
-
- lib/rspec/matchers/
|
166
|
-
- lib/rspec/matchers/method_missing.rb
|
167
|
-
- lib/rspec/matchers/operator_matcher.rb
|
213
|
+
- lib/rspec/matchers/matcher_delegator.rb
|
168
214
|
- lib/rspec/matchers/pretty.rb
|
169
|
-
- lib/rspec/matchers/test_unit_integration.rb
|
170
215
|
- README.md
|
171
216
|
- License.txt
|
172
217
|
- Changelog.md
|
@@ -178,6 +223,7 @@ files:
|
|
178
223
|
- features/built_in_matchers/be.feature
|
179
224
|
- features/built_in_matchers/be_within.feature
|
180
225
|
- features/built_in_matchers/comparisons.feature
|
226
|
+
- features/built_in_matchers/contain_exactly.feature
|
181
227
|
- features/built_in_matchers/cover.feature
|
182
228
|
- features/built_in_matchers/end_with.feature
|
183
229
|
- features/built_in_matchers/equality.feature
|
@@ -186,7 +232,7 @@ files:
|
|
186
232
|
- features/built_in_matchers/expect_error.feature
|
187
233
|
- features/built_in_matchers/include.feature
|
188
234
|
- features/built_in_matchers/match.feature
|
189
|
-
- features/built_in_matchers/
|
235
|
+
- features/built_in_matchers/output.feature
|
190
236
|
- features/built_in_matchers/predicates.feature
|
191
237
|
- features/built_in_matchers/respond_to.feature
|
192
238
|
- features/built_in_matchers/satisfy.feature
|
@@ -194,6 +240,8 @@ files:
|
|
194
240
|
- features/built_in_matchers/throw_symbol.feature
|
195
241
|
- features/built_in_matchers/types.feature
|
196
242
|
- features/built_in_matchers/yield.feature
|
243
|
+
- features/composing_matchers.feature
|
244
|
+
- features/compound_expectations.feature
|
197
245
|
- features/custom_matchers/access_running_example.feature
|
198
246
|
- features/custom_matchers/define_diffable_matcher.feature
|
199
247
|
- features/custom_matchers/define_matcher.feature
|
@@ -206,74 +254,77 @@ files:
|
|
206
254
|
- features/support/env.rb
|
207
255
|
- features/support/rubinius.rb
|
208
256
|
- features/syntax_configuration.feature
|
209
|
-
- features/test_frameworks/
|
210
|
-
- spec/rspec/expectations/
|
257
|
+
- features/test_frameworks/minitest.feature
|
258
|
+
- spec/rspec/expectations/diff_presenter_spec.rb
|
259
|
+
- spec/rspec/expectations/encoded_string_spec.rb
|
211
260
|
- spec/rspec/expectations/expectation_target_spec.rb
|
212
261
|
- spec/rspec/expectations/extensions/kernel_spec.rb
|
213
262
|
- spec/rspec/expectations/fail_with_spec.rb
|
214
263
|
- spec/rspec/expectations/handler_spec.rb
|
264
|
+
- spec/rspec/expectations/minitest_integration_spec.rb
|
215
265
|
- spec/rspec/expectations/syntax_spec.rb
|
216
266
|
- spec/rspec/expectations_spec.rb
|
217
|
-
- spec/rspec/matchers/
|
218
|
-
- spec/rspec/matchers/
|
219
|
-
- spec/rspec/matchers/
|
220
|
-
- spec/rspec/matchers/
|
221
|
-
- spec/rspec/matchers/
|
222
|
-
- spec/rspec/matchers/
|
267
|
+
- spec/rspec/matchers/aliased_matcher_spec.rb
|
268
|
+
- spec/rspec/matchers/aliases_spec.rb
|
269
|
+
- spec/rspec/matchers/built_in/base_matcher_spec.rb
|
270
|
+
- spec/rspec/matchers/built_in/be_between_spec.rb
|
271
|
+
- spec/rspec/matchers/built_in/be_instance_of_spec.rb
|
272
|
+
- spec/rspec/matchers/built_in/be_kind_of_spec.rb
|
273
|
+
- spec/rspec/matchers/built_in/be_spec.rb
|
274
|
+
- spec/rspec/matchers/built_in/be_within_spec.rb
|
275
|
+
- spec/rspec/matchers/built_in/change_spec.rb
|
276
|
+
- spec/rspec/matchers/built_in/compound_spec.rb
|
277
|
+
- spec/rspec/matchers/built_in/contain_exactly_spec.rb
|
278
|
+
- spec/rspec/matchers/built_in/cover_spec.rb
|
279
|
+
- spec/rspec/matchers/built_in/eq_spec.rb
|
280
|
+
- spec/rspec/matchers/built_in/eql_spec.rb
|
281
|
+
- spec/rspec/matchers/built_in/equal_spec.rb
|
282
|
+
- spec/rspec/matchers/built_in/exist_spec.rb
|
283
|
+
- spec/rspec/matchers/built_in/has_spec.rb
|
284
|
+
- spec/rspec/matchers/built_in/include_spec.rb
|
285
|
+
- spec/rspec/matchers/built_in/match_spec.rb
|
286
|
+
- spec/rspec/matchers/built_in/operators_spec.rb
|
287
|
+
- spec/rspec/matchers/built_in/output_spec.rb
|
288
|
+
- spec/rspec/matchers/built_in/raise_error_spec.rb
|
289
|
+
- spec/rspec/matchers/built_in/respond_to_spec.rb
|
290
|
+
- spec/rspec/matchers/built_in/satisfy_spec.rb
|
291
|
+
- spec/rspec/matchers/built_in/start_and_end_with_spec.rb
|
292
|
+
- spec/rspec/matchers/built_in/throw_symbol_spec.rb
|
293
|
+
- spec/rspec/matchers/built_in/yield_spec.rb
|
223
294
|
- spec/rspec/matchers/configuration_spec.rb
|
224
|
-
- spec/rspec/matchers/cover_spec.rb
|
225
295
|
- spec/rspec/matchers/description_generation_spec.rb
|
226
296
|
- spec/rspec/matchers/dsl_spec.rb
|
227
|
-
- spec/rspec/matchers/
|
228
|
-
- spec/rspec/
|
229
|
-
- spec/rspec/matchers/equal_spec.rb
|
230
|
-
- spec/rspec/matchers/exist_spec.rb
|
231
|
-
- spec/rspec/matchers/has_spec.rb
|
232
|
-
- spec/rspec/matchers/include_matcher_integration_spec.rb
|
233
|
-
- spec/rspec/matchers/include_spec.rb
|
234
|
-
- spec/rspec/matchers/match_array_spec.rb
|
235
|
-
- spec/rspec/matchers/match_spec.rb
|
236
|
-
- spec/rspec/matchers/matcher_spec.rb
|
237
|
-
- spec/rspec/matchers/matchers_spec.rb
|
238
|
-
- spec/rspec/matchers/method_missing_spec.rb
|
239
|
-
- spec/rspec/matchers/operator_matcher_spec.rb
|
240
|
-
- spec/rspec/matchers/raise_error_spec.rb
|
241
|
-
- spec/rspec/matchers/respond_to_spec.rb
|
242
|
-
- spec/rspec/matchers/satisfy_spec.rb
|
243
|
-
- spec/rspec/matchers/start_with_end_with_spec.rb
|
244
|
-
- spec/rspec/matchers/throw_symbol_spec.rb
|
245
|
-
- spec/rspec/matchers/yield_spec.rb
|
297
|
+
- spec/rspec/matchers/legacy_spec.rb
|
298
|
+
- spec/rspec/matchers_spec.rb
|
246
299
|
- spec/spec_helper.rb
|
247
|
-
- spec/support/classes.rb
|
248
|
-
- spec/support/in_sub_process.rb
|
249
300
|
- spec/support/matchers.rb
|
250
|
-
- spec/support/ruby_version.rb
|
251
301
|
- spec/support/shared_examples.rb
|
252
302
|
homepage: http://github.com/rspec/rspec-expectations
|
253
303
|
licenses:
|
254
304
|
- MIT
|
255
|
-
metadata: {}
|
256
305
|
post_install_message:
|
257
306
|
rdoc_options:
|
258
307
|
- --charset=UTF-8
|
259
308
|
require_paths:
|
260
309
|
- lib
|
261
310
|
required_ruby_version: !ruby/object:Gem::Requirement
|
311
|
+
none: false
|
262
312
|
requirements:
|
263
313
|
- - ! '>='
|
264
314
|
- !ruby/object:Gem::Version
|
265
315
|
version: 1.8.7
|
266
316
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
317
|
+
none: false
|
267
318
|
requirements:
|
268
319
|
- - ! '>'
|
269
320
|
- !ruby/object:Gem::Version
|
270
321
|
version: 1.3.1
|
271
322
|
requirements: []
|
272
323
|
rubyforge_project: rspec
|
273
|
-
rubygems_version:
|
324
|
+
rubygems_version: 1.8.23
|
274
325
|
signing_key:
|
275
|
-
specification_version:
|
276
|
-
summary: rspec-expectations-3.0.0.
|
326
|
+
specification_version: 3
|
327
|
+
summary: rspec-expectations-3.0.0.beta2
|
277
328
|
test_files:
|
278
329
|
- features/README.md
|
279
330
|
- features/Upgrade.md
|
@@ -281,6 +332,7 @@ test_files:
|
|
281
332
|
- features/built_in_matchers/be.feature
|
282
333
|
- features/built_in_matchers/be_within.feature
|
283
334
|
- features/built_in_matchers/comparisons.feature
|
335
|
+
- features/built_in_matchers/contain_exactly.feature
|
284
336
|
- features/built_in_matchers/cover.feature
|
285
337
|
- features/built_in_matchers/end_with.feature
|
286
338
|
- features/built_in_matchers/equality.feature
|
@@ -289,7 +341,7 @@ test_files:
|
|
289
341
|
- features/built_in_matchers/expect_error.feature
|
290
342
|
- features/built_in_matchers/include.feature
|
291
343
|
- features/built_in_matchers/match.feature
|
292
|
-
- features/built_in_matchers/
|
344
|
+
- features/built_in_matchers/output.feature
|
293
345
|
- features/built_in_matchers/predicates.feature
|
294
346
|
- features/built_in_matchers/respond_to.feature
|
295
347
|
- features/built_in_matchers/satisfy.feature
|
@@ -297,6 +349,8 @@ test_files:
|
|
297
349
|
- features/built_in_matchers/throw_symbol.feature
|
298
350
|
- features/built_in_matchers/types.feature
|
299
351
|
- features/built_in_matchers/yield.feature
|
352
|
+
- features/composing_matchers.feature
|
353
|
+
- features/compound_expectations.feature
|
300
354
|
- features/custom_matchers/access_running_example.feature
|
301
355
|
- features/custom_matchers/define_diffable_matcher.feature
|
302
356
|
- features/custom_matchers/define_matcher.feature
|
@@ -309,47 +363,49 @@ test_files:
|
|
309
363
|
- features/support/env.rb
|
310
364
|
- features/support/rubinius.rb
|
311
365
|
- features/syntax_configuration.feature
|
312
|
-
- features/test_frameworks/
|
313
|
-
- spec/rspec/expectations/
|
366
|
+
- features/test_frameworks/minitest.feature
|
367
|
+
- spec/rspec/expectations/diff_presenter_spec.rb
|
368
|
+
- spec/rspec/expectations/encoded_string_spec.rb
|
314
369
|
- spec/rspec/expectations/expectation_target_spec.rb
|
315
370
|
- spec/rspec/expectations/extensions/kernel_spec.rb
|
316
371
|
- spec/rspec/expectations/fail_with_spec.rb
|
317
372
|
- spec/rspec/expectations/handler_spec.rb
|
373
|
+
- spec/rspec/expectations/minitest_integration_spec.rb
|
318
374
|
- spec/rspec/expectations/syntax_spec.rb
|
319
375
|
- spec/rspec/expectations_spec.rb
|
320
|
-
- spec/rspec/matchers/
|
321
|
-
- spec/rspec/matchers/
|
322
|
-
- spec/rspec/matchers/
|
323
|
-
- spec/rspec/matchers/
|
324
|
-
- spec/rspec/matchers/
|
325
|
-
- spec/rspec/matchers/
|
376
|
+
- spec/rspec/matchers/aliased_matcher_spec.rb
|
377
|
+
- spec/rspec/matchers/aliases_spec.rb
|
378
|
+
- spec/rspec/matchers/built_in/base_matcher_spec.rb
|
379
|
+
- spec/rspec/matchers/built_in/be_between_spec.rb
|
380
|
+
- spec/rspec/matchers/built_in/be_instance_of_spec.rb
|
381
|
+
- spec/rspec/matchers/built_in/be_kind_of_spec.rb
|
382
|
+
- spec/rspec/matchers/built_in/be_spec.rb
|
383
|
+
- spec/rspec/matchers/built_in/be_within_spec.rb
|
384
|
+
- spec/rspec/matchers/built_in/change_spec.rb
|
385
|
+
- spec/rspec/matchers/built_in/compound_spec.rb
|
386
|
+
- spec/rspec/matchers/built_in/contain_exactly_spec.rb
|
387
|
+
- spec/rspec/matchers/built_in/cover_spec.rb
|
388
|
+
- spec/rspec/matchers/built_in/eq_spec.rb
|
389
|
+
- spec/rspec/matchers/built_in/eql_spec.rb
|
390
|
+
- spec/rspec/matchers/built_in/equal_spec.rb
|
391
|
+
- spec/rspec/matchers/built_in/exist_spec.rb
|
392
|
+
- spec/rspec/matchers/built_in/has_spec.rb
|
393
|
+
- spec/rspec/matchers/built_in/include_spec.rb
|
394
|
+
- spec/rspec/matchers/built_in/match_spec.rb
|
395
|
+
- spec/rspec/matchers/built_in/operators_spec.rb
|
396
|
+
- spec/rspec/matchers/built_in/output_spec.rb
|
397
|
+
- spec/rspec/matchers/built_in/raise_error_spec.rb
|
398
|
+
- spec/rspec/matchers/built_in/respond_to_spec.rb
|
399
|
+
- spec/rspec/matchers/built_in/satisfy_spec.rb
|
400
|
+
- spec/rspec/matchers/built_in/start_and_end_with_spec.rb
|
401
|
+
- spec/rspec/matchers/built_in/throw_symbol_spec.rb
|
402
|
+
- spec/rspec/matchers/built_in/yield_spec.rb
|
326
403
|
- spec/rspec/matchers/configuration_spec.rb
|
327
|
-
- spec/rspec/matchers/cover_spec.rb
|
328
404
|
- spec/rspec/matchers/description_generation_spec.rb
|
329
405
|
- spec/rspec/matchers/dsl_spec.rb
|
330
|
-
- spec/rspec/matchers/
|
331
|
-
- spec/rspec/
|
332
|
-
- spec/rspec/matchers/equal_spec.rb
|
333
|
-
- spec/rspec/matchers/exist_spec.rb
|
334
|
-
- spec/rspec/matchers/has_spec.rb
|
335
|
-
- spec/rspec/matchers/include_matcher_integration_spec.rb
|
336
|
-
- spec/rspec/matchers/include_spec.rb
|
337
|
-
- spec/rspec/matchers/match_array_spec.rb
|
338
|
-
- spec/rspec/matchers/match_spec.rb
|
339
|
-
- spec/rspec/matchers/matcher_spec.rb
|
340
|
-
- spec/rspec/matchers/matchers_spec.rb
|
341
|
-
- spec/rspec/matchers/method_missing_spec.rb
|
342
|
-
- spec/rspec/matchers/operator_matcher_spec.rb
|
343
|
-
- spec/rspec/matchers/raise_error_spec.rb
|
344
|
-
- spec/rspec/matchers/respond_to_spec.rb
|
345
|
-
- spec/rspec/matchers/satisfy_spec.rb
|
346
|
-
- spec/rspec/matchers/start_with_end_with_spec.rb
|
347
|
-
- spec/rspec/matchers/throw_symbol_spec.rb
|
348
|
-
- spec/rspec/matchers/yield_spec.rb
|
406
|
+
- spec/rspec/matchers/legacy_spec.rb
|
407
|
+
- spec/rspec/matchers_spec.rb
|
349
408
|
- spec/spec_helper.rb
|
350
|
-
- spec/support/classes.rb
|
351
|
-
- spec/support/in_sub_process.rb
|
352
409
|
- spec/support/matchers.rb
|
353
|
-
- spec/support/ruby_version.rb
|
354
410
|
- spec/support/shared_examples.rb
|
355
411
|
has_rdoc:
|