diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2019-01-01 09:43:15 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2019-01-01 09:43:15 +0100 |
commit | 920187b21e6847553aacceb8d57f7faede293804 (patch) | |
tree | 4a5533b2ae43d162ef55b6744c662fa983b19ebd /spec/app_spec.rb | |
parent | f93da90174305489b861f631379c9c8bb97ef702 (diff) | |
download | zorglub-920187b21e6847553aacceb8d57f7faede293804.zip zorglub-920187b21e6847553aacceb8d57f7faede293804.tar.gz |
update specs
Diffstat (limited to 'spec/app_spec.rb')
-rw-r--r-- | spec/app_spec.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/spec/app_spec.rb b/spec/app_spec.rb index fb2adbd..2d7aaeb 100644 --- a/spec/app_spec.rb +++ b/spec/app_spec.rb @@ -7,35 +7,35 @@ describe Zorglub do describe Zorglub::App do it "map should add a mapped node" do - APP.at("/temp").should be_nil + expect(APP.at("/temp")).to be_nil APP.map "/temp", Temp - APP.at("/temp").should be Temp + expect(APP.at("/temp")).to be Temp end it "delete should delete a mapped node" do - APP.at("/temp").should be Temp + expect(APP.at("/temp")).to be Temp APP.delete "/temp" - APP.at("/temp").should be_nil + expect(APP.at("/temp")).to be_nil end it "at should return mapped node" do - APP.at("/node1").should be Node1 + expect(APP.at("/node1")).to be Node1 end it "at should return nil if no Node mapped" do - APP.at("/none").should be_nil + expect(APP.at("/none")).to be_nil end it "to should return path to node" do - APP.to(Node1).should == "/node1" + expect(APP.to(Node1)).to eq "/node1" end it "to should return nil if not an existing Node" do - APP.to(nil).should be_nil + expect(APP.to(nil)).to be_nil end it "to_hash should return a correct hash" do - APP.to_hash["/node1"].should be Node1 + expect(APP.to_hash["/node1"]).to be Node1 end end |