rspec-expectations 2.0.0.beta.8 → 2.0.0.beta.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/README.markdown +1 -1
  2. data/Rakefile +8 -7
  3. data/Upgrade.markdown +6 -6
  4. data/VERSION +1 -1
  5. data/features/expectations/customized_message.feature +1 -1
  6. data/features/expectations/implicit_docstrings.feature +2 -2
  7. data/features/matchers/access_running_example.feature +5 -5
  8. data/features/matchers/define_diffable_matcher.feature +2 -2
  9. data/features/matchers/define_matcher.feature +14 -14
  10. data/features/matchers/define_matcher_outside_rspec.feature +2 -2
  11. data/features/matchers/define_matcher_with_fluent_interface.feature +2 -2
  12. data/features/matchers/expect_change.feature +2 -2
  13. data/features/matchers/expect_error.feature +2 -2
  14. data/lib/rspec/expectations.rb +7 -5
  15. data/lib/rspec/expectations/backward_compatibility.rb +16 -0
  16. data/lib/rspec/expectations/differ.rb +58 -0
  17. data/lib/rspec/expectations/errors.rb +1 -1
  18. data/lib/rspec/expectations/extensions/kernel.rb +4 -4
  19. data/lib/rspec/expectations/extensions/rspec/core/example_group.rb +1 -1
  20. data/lib/rspec/expectations/fail_with.rb +6 -4
  21. data/lib/rspec/expectations/handler.rb +11 -11
  22. data/lib/rspec/expectations/version.rb +1 -1
  23. data/lib/rspec/matchers.rb +7 -8
  24. data/lib/rspec/matchers/be.rb +6 -6
  25. data/lib/rspec/matchers/be_close.rb +1 -1
  26. data/lib/rspec/matchers/be_instance_of.rb +1 -1
  27. data/lib/rspec/matchers/be_kind_of.rb +1 -1
  28. data/lib/rspec/matchers/change.rb +1 -1
  29. data/lib/rspec/matchers/compatibility.rb +2 -2
  30. data/lib/rspec/matchers/dsl.rb +4 -4
  31. data/lib/rspec/matchers/eq.rb +1 -1
  32. data/lib/rspec/matchers/eql.rb +1 -1
  33. data/lib/rspec/matchers/equal.rb +1 -1
  34. data/lib/rspec/matchers/errors.rb +1 -1
  35. data/lib/rspec/matchers/exist.rb +1 -1
  36. data/lib/rspec/matchers/extensions/instance_exec.rb +1 -1
  37. data/lib/rspec/matchers/generated_descriptions.rb +1 -1
  38. data/lib/rspec/matchers/has.rb +1 -1
  39. data/lib/rspec/matchers/have.rb +1 -1
  40. data/lib/rspec/matchers/include.rb +1 -1
  41. data/lib/rspec/matchers/match.rb +1 -1
  42. data/lib/rspec/matchers/match_array.rb +3 -3
  43. data/lib/rspec/matchers/matcher.rb +13 -13
  44. data/lib/rspec/matchers/method_missing.rb +1 -1
  45. data/lib/rspec/matchers/operator_matcher.rb +4 -4
  46. data/lib/rspec/matchers/pretty.rb +1 -1
  47. data/lib/rspec/matchers/raise_error.rb +1 -1
  48. data/lib/rspec/matchers/respond_to.rb +1 -1
  49. data/lib/rspec/matchers/satisfy.rb +1 -1
  50. data/lib/rspec/matchers/throw_symbol.rb +1 -1
  51. data/rspec-expectations.gemspec +17 -14
  52. data/spec/rspec/expectations/{differs/default_spec.rb → differ_spec.rb} +4 -36
  53. data/spec/rspec/expectations/fail_with_spec.rb +6 -50
  54. data/spec/rspec/expectations/handler_spec.rb +22 -22
  55. data/spec/rspec/matchers/be_close_spec.rb +1 -1
  56. data/spec/rspec/matchers/be_instance_of_spec.rb +1 -1
  57. data/spec/rspec/matchers/be_kind_of_spec.rb +1 -1
  58. data/spec/rspec/matchers/change_spec.rb +3 -3
  59. data/spec/rspec/matchers/compatibility_spec.rb +3 -3
  60. data/spec/rspec/matchers/description_generation_spec.rb +28 -28
  61. data/spec/rspec/matchers/dsl_spec.rb +3 -3
  62. data/spec/rspec/matchers/eq_spec.rb +1 -1
  63. data/spec/rspec/matchers/eql_spec.rb +1 -1
  64. data/spec/rspec/matchers/equal_spec.rb +1 -1
  65. data/spec/rspec/matchers/exist_spec.rb +1 -1
  66. data/spec/rspec/matchers/have_spec.rb +3 -3
  67. data/spec/rspec/matchers/match_array_spec.rb +3 -0
  68. data/spec/rspec/matchers/matcher_spec.rb +25 -25
  69. data/spec/rspec/matchers/operator_matcher_spec.rb +12 -12
  70. data/spec/rspec/matchers/throw_symbol_spec.rb +1 -1
  71. data/spec/spec_helper.rb +6 -7
  72. data/spec/support/classes.rb +1 -1
  73. metadata +35 -21
  74. data/lib/rspec/expectations/differs/default.rb +0 -62
  75. data/lib/rspec/expectations/differs/load-diff-lcs.rb +0 -7
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
  def method_missing(sym, *args, &block) # :nodoc:
4
4
  return Matchers::BePredicate.new(sym, *args, &block) if sym.to_s =~ /^be_/
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
 
4
4
  class OperatorMatcher
@@ -24,7 +24,7 @@ module Rspec
24
24
  def self.use_custom_matcher_or_delegate(operator)
25
25
  define_method(operator) do |expected|
26
26
  if matcher = OperatorMatcher.get(@actual.class, operator)
27
- @actual.send(::Rspec::Matchers.last_should, matcher.new(expected))
27
+ @actual.send(::RSpec::Matchers.last_should, matcher.new(expected))
28
28
  else
29
29
  eval_match(@actual, operator, expected)
30
30
  end
@@ -36,7 +36,7 @@ module Rspec
36
36
  end
37
37
 
38
38
  def fail_with_message(message)
39
- Rspec::Expectations.fail_with(message, @expected, @actual)
39
+ RSpec::Expectations.fail_with(message, @expected, @actual)
40
40
  end
41
41
 
42
42
  def description
@@ -46,7 +46,7 @@ module Rspec
46
46
  private
47
47
 
48
48
  def eval_match(actual, operator, expected)
49
- ::Rspec::Matchers.last_matcher = self
49
+ ::RSpec::Matchers.last_matcher = self
50
50
  @operator, @expected = operator, expected
51
51
  __delegate_operator(actual, operator, expected)
52
52
  end
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
  module Pretty
4
4
  def split_words(sym)
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
  class RaiseError #:nodoc:
4
4
  def initialize(expected_error_or_message=Exception, expected_message=nil, &block)
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
 
4
4
  class RespondTo #:nodoc:
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
 
4
4
  class Satisfy #:nodoc:
@@ -1,4 +1,4 @@
1
- module Rspec
1
+ module RSpec
2
2
  module Matchers
3
3
 
4
4
  class ThrowSymbol #:nodoc:
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rspec-expectations}
8
- s.version = "2.0.0.beta.8"
8
+ s.version = "2.0.0.beta.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["David Chelimsky", "Chad Humphries"]
12
- s.date = %q{2010-04-27}
12
+ s.date = %q{2010-05-27}
13
13
  s.description = %q{rspec expectations (should[_not] and matchers)}
14
14
  s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -35,8 +35,8 @@ Gem::Specification.new do |s|
35
35
  "features/matchers/expect_error.feature",
36
36
  "features/support/env.rb",
37
37
  "lib/rspec/expectations.rb",
38
- "lib/rspec/expectations/differs/default.rb",
39
- "lib/rspec/expectations/differs/load-diff-lcs.rb",
38
+ "lib/rspec/expectations/backward_compatibility.rb",
39
+ "lib/rspec/expectations/differ.rb",
40
40
  "lib/rspec/expectations/errors.rb",
41
41
  "lib/rspec/expectations/extensions.rb",
42
42
  "lib/rspec/expectations/extensions/kernel.rb",
@@ -73,7 +73,7 @@ Gem::Specification.new do |s|
73
73
  "lib/rspec/matchers/satisfy.rb",
74
74
  "lib/rspec/matchers/throw_symbol.rb",
75
75
  "rspec-expectations.gemspec",
76
- "spec/rspec/expectations/differs/default_spec.rb",
76
+ "spec/rspec/expectations/differ_spec.rb",
77
77
  "spec/rspec/expectations/extensions/kernel_spec.rb",
78
78
  "spec/rspec/expectations/fail_with_spec.rb",
79
79
  "spec/rspec/expectations/handler_spec.rb",
@@ -109,7 +109,7 @@ Gem::Specification.new do |s|
109
109
  s.homepage = %q{http://github.com/rspec/expectations}
110
110
  s.post_install_message = %q{**************************************************
111
111
 
112
- Thank you for installing rspec-expectations-2.0.0.beta.8
112
+ Thank you for installing rspec-expectations-2.0.0.beta.9
113
113
 
114
114
  This is beta software. If you are looking
115
115
  for a supported production release, please
@@ -121,9 +121,9 @@ Gem::Specification.new do |s|
121
121
  s.require_paths = ["lib"]
122
122
  s.rubyforge_project = %q{rspec}
123
123
  s.rubygems_version = %q{1.3.6}
124
- s.summary = %q{rspec-expectations-2.0.0.beta.8}
124
+ s.summary = %q{rspec-expectations-2.0.0.beta.9}
125
125
  s.test_files = [
126
- "spec/rspec/expectations/differs/default_spec.rb",
126
+ "spec/rspec/expectations/differ_spec.rb",
127
127
  "spec/rspec/expectations/extensions/kernel_spec.rb",
128
128
  "spec/rspec/expectations/fail_with_spec.rb",
129
129
  "spec/rspec/expectations/handler_spec.rb",
@@ -161,21 +161,24 @@ Gem::Specification.new do |s|
161
161
  s.specification_version = 3
162
162
 
163
163
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
164
+ s.add_runtime_dependency(%q<diff-lcs>, [">= 1.1.2"])
164
165
  s.add_development_dependency(%q<cucumber>, [">= 0.6.2"])
165
166
  s.add_development_dependency(%q<aruba>, [">= 0.1.1"])
166
- s.add_development_dependency(%q<rspec-core>, [">= 2.0.0.beta.8"])
167
- s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.8"])
167
+ s.add_development_dependency(%q<rspec-core>, [">= 2.0.0.beta.9"])
168
+ s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.9"])
168
169
  else
170
+ s.add_dependency(%q<diff-lcs>, [">= 1.1.2"])
169
171
  s.add_dependency(%q<cucumber>, [">= 0.6.2"])
170
172
  s.add_dependency(%q<aruba>, [">= 0.1.1"])
171
- s.add_dependency(%q<rspec-core>, [">= 2.0.0.beta.8"])
172
- s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.8"])
173
+ s.add_dependency(%q<rspec-core>, [">= 2.0.0.beta.9"])
174
+ s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.9"])
173
175
  end
174
176
  else
177
+ s.add_dependency(%q<diff-lcs>, [">= 1.1.2"])
175
178
  s.add_dependency(%q<cucumber>, [">= 0.6.2"])
176
179
  s.add_dependency(%q<aruba>, [">= 0.1.1"])
177
- s.add_dependency(%q<rspec-core>, [">= 2.0.0.beta.8"])
178
- s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.8"])
180
+ s.add_dependency(%q<rspec-core>, [">= 2.0.0.beta.9"])
181
+ s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.beta.9"])
179
182
  end
180
183
  end
181
184
 
@@ -1,7 +1,7 @@
1
1
  require 'spec_helper'
2
2
  require 'ostruct'
3
3
 
4
- module Rspec
4
+ module RSpec
5
5
  module Fixtures
6
6
  class Animal
7
7
  def initialize(name,species)
@@ -23,7 +23,7 @@ end
23
23
  describe "Diff" do
24
24
  before(:each) do
25
25
  @options = OpenStruct.new(:diff_format => :unified, :context_lines => 3)
26
- @differ = Rspec::Expectations::Differs::Default.new(@options)
26
+ @differ = RSpec::Expectations::Differ.new(@options)
27
27
  end
28
28
 
29
29
  it "should output unified diff of two strings" do
@@ -76,8 +76,8 @@ EOD
76
76
  end
77
77
 
78
78
  it "should output unified diff message of two objects" do
79
- expected = Rspec::Fixtures::Animal.new "bob", "giraffe"
80
- actual = Rspec::Fixtures::Animal.new "bob", "tortoise"
79
+ expected = RSpec::Fixtures::Animal.new "bob", "giraffe"
80
+ actual = RSpec::Fixtures::Animal.new "bob", "tortoise"
81
81
 
82
82
  expected_diff = <<'EOD'
83
83
 
@@ -94,35 +94,3 @@ EOD
94
94
  end
95
95
 
96
96
  end
97
-
98
-
99
- describe "Diff in context format" do
100
- before(:each) do
101
- @options = OpenStruct.new(:diff_format => :unified, :context_lines => 3)
102
- @options.diff_format = :context
103
- @differ = Rspec::Expectations::Differs::Default.new(@options)
104
- end
105
-
106
- it "should output unified diff message of two objects" do
107
- expected = Rspec::Fixtures::Animal.new "bob", "giraffe"
108
- actual = Rspec::Fixtures::Animal.new "bob", "tortoise"
109
-
110
- expected_diff = <<'EOD'
111
-
112
- ***************
113
- *** 1,5 ****
114
- <Animal
115
- name=bob,
116
- ! species=tortoise
117
- >
118
- --- 1,5 ----
119
- <Animal
120
- name=bob,
121
- ! species=giraffe
122
- >
123
- EOD
124
-
125
- diff = @differ.diff_as_object(expected,actual)
126
- diff.should == expected_diff
127
- end
128
- end
@@ -1,52 +1,28 @@
1
1
  require 'spec_helper'
2
2
 
3
- describe Rspec::Expectations, "#fail_with with no diff" do
3
+ describe RSpec::Expectations, "#fail_with with diff" do
4
4
  before(:each) do
5
- @old_differ = Rspec::Expectations.differ
6
- Rspec::Expectations.differ = nil
7
- end
8
-
9
- it "should handle just a message" do
10
- lambda {
11
- Rspec::Expectations.fail_with "the message"
12
- }.should fail_with("the message")
13
- end
14
-
15
- after(:each) do
16
- Rspec::Expectations.differ = @old_differ
17
- end
18
- end
19
-
20
- describe Rspec::Expectations, "#fail_with with Array" do
21
- before(:each) do
22
- Rspec::Core.stub!(:warn)
23
- end
24
- end
25
-
26
- describe Rspec::Expectations, "#fail_with with diff" do
27
- before(:each) do
28
- @old_differ = Rspec::Expectations.differ
29
5
  @differ = mock("differ")
30
- Rspec::Expectations.differ = @differ
6
+ RSpec::Expectations.stub(:differ) { @differ }
31
7
  end
32
8
 
33
9
  it "should not call differ if no expected/actual" do
34
10
  lambda {
35
- Rspec::Expectations.fail_with "the message"
11
+ RSpec::Expectations.fail_with "the message"
36
12
  }.should fail_with("the message")
37
13
  end
38
14
 
39
15
  it "should call differ if expected/actual are presented separately" do
40
16
  @differ.should_receive(:diff_as_string).and_return("diff")
41
17
  lambda {
42
- Rspec::Expectations.fail_with "the message", "expected", "actual"
18
+ RSpec::Expectations.fail_with "the message", "expected", "actual"
43
19
  }.should fail_with("the message\nDiff:diff")
44
20
  end
45
21
 
46
22
  it "should call differ if expected/actual are not strings" do
47
23
  @differ.should_receive(:diff_as_object).and_return("diff")
48
24
  lambda {
49
- Rspec::Expectations.fail_with "the message", :expected, :actual
25
+ RSpec::Expectations.fail_with "the message", :expected, :actual
50
26
  }.should fail_with("the message\nDiff:diff")
51
27
  end
52
28
 
@@ -54,28 +30,8 @@ describe Rspec::Expectations, "#fail_with with diff" do
54
30
  @differ.should_not_receive(:diff_as_string)
55
31
  @differ.should_not_receive(:diff_as_object)
56
32
  lambda {
57
- Rspec::Expectations.fail_with "the message", lambda {}, lambda {}
33
+ RSpec::Expectations.fail_with "the message", lambda {}, lambda {}
58
34
  }.should fail_with("the message")
59
35
  end
60
-
61
- after(:each) do
62
- Rspec::Expectations.differ = @old_differ
63
- end
64
36
  end
65
37
 
66
- describe Rspec::Expectations, "#fail_with with a nil message" do
67
- before(:each) do
68
- @old_differ = Rspec::Expectations.differ
69
- Rspec::Expectations.differ = nil
70
- end
71
-
72
- it "should handle just a message" do
73
- lambda {
74
- Rspec::Expectations.fail_with nil
75
- }.should raise_error(ArgumentError, /Failure message is nil\. Does your matcher define the appropriate failure_message_for_\* method to return a string\?/)
76
- end
77
-
78
- after(:each) do
79
- Rspec::Expectations.differ = @old_differ
80
- end
81
- end
@@ -44,7 +44,7 @@ module ExampleExpectations
44
44
 
45
45
  end
46
46
 
47
- module Rspec
47
+ module RSpec
48
48
  module Expectations
49
49
  describe PositiveExpectationHandler do
50
50
  describe "#handle_matcher" do
@@ -52,23 +52,23 @@ module Rspec
52
52
  matcher = mock("matcher")
53
53
  actual = Object.new
54
54
  matcher.should_receive(:matches?).with(actual).and_return(true)
55
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
55
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
56
56
  end
57
57
 
58
58
  it "returns the match value" do
59
59
  matcher = mock("matcher")
60
60
  actual = Object.new
61
61
  matcher.should_receive(:matches?).with(actual).and_return(:this_value)
62
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher).should == :this_value
62
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher).should == :this_value
63
63
  end
64
64
 
65
65
  it "calls failure_message_for_should if the matcher implements it" do
66
66
  matcher = mock("matcher", :failure_message_for_should => "message", :matches? => false)
67
67
  actual = Object.new
68
68
 
69
- ::Rspec::Expectations.should_receive(:fail_with).with("message")
69
+ ::RSpec::Expectations.should_receive(:fail_with).with("message")
70
70
 
71
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
71
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
72
72
  end
73
73
 
74
74
  it "calls fail if matcher.diffable?" do
@@ -81,18 +81,18 @@ module Rspec
81
81
  )
82
82
  actual = Object.new
83
83
 
84
- ::Rspec::Expectations.should_receive(:fail_with).with("message", 1, 2)
84
+ ::RSpec::Expectations.should_receive(:fail_with).with("message", 1, 2)
85
85
 
86
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
86
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
87
87
  end
88
88
 
89
89
  it "calls failure_message if the matcher does not implement failure_message_for_should" do
90
90
  matcher = mock("matcher", :failure_message => "message", :matches? => false)
91
91
  actual = Object.new
92
92
 
93
- ::Rspec::Expectations.should_receive(:fail_with).with("message")
93
+ ::RSpec::Expectations.should_receive(:fail_with).with("message")
94
94
 
95
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
95
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher)
96
96
 
97
97
  end
98
98
 
@@ -100,9 +100,9 @@ module Rspec
100
100
  matcher = mock("matcher", :failure_message_for_should => "message", :matches? => false)
101
101
  actual = Object.new
102
102
 
103
- ::Rspec::Expectations.should_receive(:fail_with).with("custom")
103
+ ::RSpec::Expectations.should_receive(:fail_with).with("custom")
104
104
 
105
- Rspec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher, "custom")
105
+ RSpec::Expectations::PositiveExpectationHandler.handle_matcher(actual, matcher, "custom")
106
106
  end
107
107
  end
108
108
  end
@@ -113,7 +113,7 @@ module Rspec
113
113
  matcher = mock("matcher", :does_not_match? => true, :negative_failure_message => nil)
114
114
  actual = Object.new
115
115
  matcher.should_receive(:does_not_match?).with(actual).and_return(true)
116
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
116
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
117
117
  end
118
118
 
119
119
  it "asks the matcher if it matches when the matcher doesn't respond to #does_not_match?" do
@@ -121,7 +121,7 @@ module Rspec
121
121
  actual = Object.new
122
122
  matcher.stub!(:negative_failure_message)
123
123
  matcher.should_receive(:matches?).with(actual).and_return(false)
124
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
124
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
125
125
  end
126
126
 
127
127
  it "returns the match value" do
@@ -129,7 +129,7 @@ module Rspec
129
129
  actual = Object.new
130
130
  matcher.should_receive(:matches?).with(actual).and_return(false)
131
131
  matcher.stub!(:negative_failure_message).and_return("ignore")
132
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher).should be_false
132
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher).should be_false
133
133
  end
134
134
 
135
135
 
@@ -137,9 +137,9 @@ module Rspec
137
137
  matcher = mock("matcher", :failure_message_for_should_not => "message", :matches? => true)
138
138
  actual = Object.new
139
139
 
140
- ::Rspec::Expectations.should_receive(:fail_with).with("message")
140
+ ::RSpec::Expectations.should_receive(:fail_with).with("message")
141
141
 
142
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
142
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
143
143
 
144
144
  end
145
145
 
@@ -147,9 +147,9 @@ module Rspec
147
147
  matcher = mock("matcher", :negative_failure_message => "message", :matches? => true)
148
148
  actual = Object.new
149
149
 
150
- ::Rspec::Expectations.should_receive(:fail_with).with("message")
150
+ ::RSpec::Expectations.should_receive(:fail_with).with("message")
151
151
 
152
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
152
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
153
153
 
154
154
  end
155
155
 
@@ -164,18 +164,18 @@ module Rspec
164
164
  )
165
165
  actual = Object.new
166
166
 
167
- ::Rspec::Expectations.should_receive(:fail_with).with("message", 1, 2)
167
+ ::RSpec::Expectations.should_receive(:fail_with).with("message", 1, 2)
168
168
 
169
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
169
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher)
170
170
  end
171
171
 
172
172
  it "appends the :or message in the options hash passed to should" do
173
173
  matcher = mock("matcher", :failure_message_for_should_not => "message", :matches? => true)
174
174
  actual = Object.new
175
175
 
176
- ::Rspec::Expectations.should_receive(:fail_with).with("custom")
176
+ ::RSpec::Expectations.should_receive(:fail_with).with("custom")
177
177
 
178
- Rspec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher, "custom")
178
+ RSpec::Expectations::NegativeExpectationHandler.handle_matcher(actual, matcher, "custom")
179
179
  end
180
180
 
181
181
  end