diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2019-01-01 09:02:17 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2019-01-01 09:02:17 +0100 |
commit | f93da90174305489b861f631379c9c8bb97ef702 (patch) | |
tree | 4d371fd9e524cae85568d12836674b604db3b437 /spec/app_spec.rb | |
parent | 2de757e7549b909e8c69d13e1334108c9935d12e (diff) | |
download | zorglub-f93da90174305489b861f631379c9c8bb97ef702.zip zorglub-f93da90174305489b861f631379c9c8bb97ef702.tar.gz |
coding style : remove all these empty comment lines
Diffstat (limited to 'spec/app_spec.rb')
-rw-r--r-- | spec/app_spec.rb | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/spec/app_spec.rb b/spec/app_spec.rb index 0e8375b..fb2adbd 100644 --- a/spec/app_spec.rb +++ b/spec/app_spec.rb @@ -1,43 +1,43 @@ # -*- coding: UTF-8 -*- -# + require 'spec_helper' -# + describe Zorglub do - # + describe Zorglub::App do - # + it "map should add a mapped node" do APP.at("/temp").should be_nil APP.map "/temp", Temp APP.at("/temp").should be Temp end - # + it "delete should delete a mapped node" do APP.at("/temp").should be Temp APP.delete "/temp" APP.at("/temp").should be_nil end - # + it "at should return mapped node" do APP.at("/node1").should be Node1 end - # + it "at should return nil if no Node mapped" do APP.at("/none").should be_nil end - # + it "to should return path to node" do APP.to(Node1).should == "/node1" end - # + it "to should return nil if not an existing Node" do APP.to(nil).should be_nil end - # + it "to_hash should return a correct hash" do APP.to_hash["/node1"].should be Node1 end - # + end - # + end |