summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-01-15 14:37:28 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2018-01-15 14:37:28 +0100
commit6f21c38626b5700c80f87f954d5df1e0515e7d9f (patch)
treea02b4bc3c3e0646b58810f0ea1928e901b9442c5
parent8644f84325491d59d611c6d01b449d8659a00a85 (diff)
downloadzorglub-6f21c38626b5700c80f87f954d5df1e0515e7d9f.zip
zorglub-6f21c38626b5700c80f87f954d5df1e0515e7d9f.tar.gz
rspec -> be_false -> be_falsey
-rw-r--r--spec/node_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/node_spec.rb b/spec/node_spec.rb
index 058e626..67bd70f 100644
--- a/spec/node_spec.rb
+++ b/spec/node_spec.rb
@@ -58,7 +58,7 @@ describe Zorglub do
end
#
it "should return err404 response when no method found" do
- Node0.respond_to?('noresponse').should be_false
+ Node0.respond_to?('noresponse').should be_falsey
r = Node0.my_call '/noresponse'
r.status.should == 404
end