1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
|
require 'spec_helper'
describe "expect(...).to respond_to(:sym)" do
it_behaves_like "an RSpec matcher", :valid_value => "s", :invalid_value => 5 do
let(:matcher) { respond_to(:upcase) }
end
it "passes if target responds to :sym" do
expect(Object.new).to respond_to(:methods)
end
it "fails if target does not respond to :sym" do
expect {
expect("this string").to respond_to(:some_method)
}.to fail_with(%q|expected "this string" to respond to :some_method|)
end
end
describe "expect(...).to respond_to(:sym).with(1).argument" do
it "passes if target responds to :sym with 1 arg" do
obj = Object.new
def obj.foo(arg); end
expect(obj).to respond_to(:foo).with(1).argument
end
it "passes if target responds to any number of arguments" do
obj = Object.new
def obj.foo(*args); end
expect(obj).to respond_to(:foo).with(1).argument
end
it "passes if target responds to one or more arguments" do
obj = Object.new
def obj.foo(a, *args); end
expect(obj).to respond_to(:foo).with(1).argument
end
it "fails if target does not respond to :sym" do
obj = Object.new
expect {
expect(obj).to respond_to(:some_method).with(1).argument
}.to fail_with(/expected .* to respond to :some_method/)
end
it "fails if :sym expects 0 args" do
obj = Object.new
def obj.foo; end
expect {
expect(obj).to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object.*> to respond to :foo with 1 argument/)
end
it "fails if :sym expects 2 args" do
obj = Object.new
def obj.foo(arg, arg2); end
expect {
expect(obj).to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object.*> to respond to :foo with 1 argument/)
end
it "fails if :sym expects 2 or more args" do
obj = Object.new
def obj.foo(arg, arg2, *args); end
expect {
expect(obj).to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object.*> to respond to :foo with 1 argument/)
end
end
describe "expect(...).to respond_to(message1, message2)" do
it "passes if target responds to both messages" do
expect(Object.new).to respond_to('methods', 'inspect')
end
it "fails if target does not respond to first message" do
expect {
expect(Object.new).to respond_to('method_one', 'inspect')
}.to fail_with(/expected #<Object:.*> to respond to "method_one"/)
end
it "fails if target does not respond to second message" do
expect {
expect(Object.new).to respond_to('inspect', 'method_one')
}.to fail_with(/expected #<Object:.*> to respond to "method_one"/)
end
it "fails if target does not respond to either message" do
expect {
expect(Object.new).to respond_to('method_one', 'method_two')
}.to fail_with(/expected #<Object:.*> to respond to "method_one", "method_two"/)
end
end
describe "expect(...).to respond_to(:sym).with(2).arguments" do
it "passes if target responds to :sym with 2 args" do
obj = Object.new
def obj.foo(a1, a2); end
expect(obj).to respond_to(:foo).with(2).arguments
end
it "passes if target responds to any number of arguments" do
obj = Object.new
def obj.foo(*args); end
expect(obj).to respond_to(:foo).with(2).arguments
end
it "passes if target responds to one or more arguments" do
obj = Object.new
def obj.foo(a, *args); end
expect(obj).to respond_to(:foo).with(2).arguments
end
it "passes if target responds to two or more arguments" do
obj = Object.new
def obj.foo(a, b, *args); end
expect(obj).to respond_to(:foo).with(2).arguments
end
it "fails if target does not respond to :sym" do
obj = Object.new
expect {
expect(obj).to respond_to(:some_method).with(2).arguments
}.to fail_with(/expected .* to respond to :some_method/)
end
it "fails if :sym expects 0 args" do
obj = Object.new
def obj.foo; end
expect {
expect(obj).to respond_to(:foo).with(2).arguments
}.to fail_with(/expected #<Object.*> to respond to :foo with 2 arguments/)
end
it "fails if :sym expects 1 args" do
obj = Object.new
def obj.foo(arg); end
expect {
expect(obj).to respond_to(:foo).with(2).arguments
}.to fail_with(/expected #<Object.*> to respond to :foo with 2 arguments/)
end
it "fails if :sym expects 3 or more args" do
obj = Object.new
def obj.foo(arg, arg2, arg3, *args); end
expect {
expect(obj).to respond_to(:foo).with(2).arguments
}.to fail_with(/expected #<Object.*> to respond to :foo with 2 arguments/)
end
end
describe "expect(...).not_to respond_to(:sym)" do
it "passes if target does not respond to :sym" do
expect(Object.new).not_to respond_to(:some_method)
end
it "fails if target responds to :sym" do
expect {
expect(Object.new).not_to respond_to(:methods)
}.to fail_with(/expected #<Object:.*> not to respond to :methods/)
end
end
describe "expect(...).not_to respond_to(:sym).with(1).argument" do
it "fails if target responds to :sym with 1 arg" do
obj = Object.new
def obj.foo(arg); end
expect {
expect(obj).not_to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object:.*> not to respond to :foo with 1 argument/)
end
it "fails if target responds to :sym with any number of args" do
obj = Object.new
def obj.foo(*args); end
expect {
expect(obj).not_to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object:.*> not to respond to :foo with 1 argument/)
end
it "fails if target responds to :sym with one or more args" do
obj = Object.new
def obj.foo(a, *args); end
expect {
expect(obj).not_to respond_to(:foo).with(1).argument
}.to fail_with(/expected #<Object:.*> not to respond to :foo with 1 argument/)
end
it "passes if target does not respond to :sym" do
obj = Object.new
expect(obj).not_to respond_to(:some_method).with(1).argument
end
it "passes if :sym expects 0 args" do
obj = Object.new
def obj.foo; end
expect(obj).not_to respond_to(:foo).with(1).argument
end
it "passes if :sym expects 2 args" do
obj = Object.new
def obj.foo(arg, arg2); end
expect(obj).not_to respond_to(:foo).with(1).argument
end
it "passes if :sym expects 2 or more args" do
obj = Object.new
def obj.foo(arg, arg2, *args); end
expect(obj).not_to respond_to(:foo).with(1).argument
end
end
describe "expect(...).not_to respond_to(message1, message2)" do
it "passes if target does not respond to either message1 or message2" do
expect(Object.new).not_to respond_to(:some_method, :some_other_method)
end
it "fails if target responds to message1 but not message2" do
expect {
expect(Object.new).not_to respond_to(:object_id, :some_method)
}.to fail_with(/expected #<Object:.*> not to respond to :object_id/)
end
it "fails if target responds to message2 but not message1" do
expect {
expect(Object.new).not_to respond_to(:some_method, :object_id)
}.to fail_with(/expected #<Object:.*> not to respond to :object_id/)
end
it "fails if target responds to both message1 and message2" do
expect {
expect(Object.new).not_to respond_to(:class, :object_id)
}.to fail_with(/expected #<Object:.*> not to respond to :class, :object_id/)
end
end
describe "expect(...).not_to respond_to(:sym).with(2).arguments" do
it "fails if target responds to :sym with 2 args" do
obj = Object.new
def obj.foo(a1, a2); end
expect {
expect(obj).not_to respond_to(:foo).with(2).arguments
}.to fail_with(/expected .* not to respond to :foo with 2 arguments/)
end
it "fails if target responds to :sym with any number args" do
obj = Object.new
def obj.foo(*args); end
expect {
expect(obj).not_to respond_to(:foo).with(2).arguments
}.to fail_with(/expected .* not to respond to :foo with 2 arguments/)
end
it "fails if target responds to :sym with one or more args" do
obj = Object.new
def obj.foo(a, *args); end
expect {
expect(obj).not_to respond_to(:foo).with(2).arguments
}.to fail_with(/expected .* not to respond to :foo with 2 arguments/)
end
it "fails if target responds to :sym with two or more args" do
obj = Object.new
def obj.foo(a, b, *args); end
expect {
expect(obj).not_to respond_to(:foo).with(2).arguments
}.to fail_with(/expected .* not to respond to :foo with 2 arguments/)
end
it "passes if target does not respond to :sym" do
obj = Object.new
expect(obj).not_to respond_to(:some_method).with(2).arguments
end
it "passes if :sym expects 0 args" do
obj = Object.new
def obj.foo; end
expect(obj).not_to respond_to(:foo).with(2).arguments
end
it "passes if :sym expects 2 args" do
obj = Object.new
def obj.foo(arg); end
expect(obj).not_to respond_to(:foo).with(2).arguments
end
it "passes if :sym expects 3 or more args" do
obj = Object.new
def obj.foo(a, b, c, *arg); end
expect(obj).not_to respond_to(:foo).with(2).arguments
end
end
|