summaryrefslogtreecommitdiffstats
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r--spec/spec_helper.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index faf5cc3..aa096e7 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -69,11 +69,11 @@ class Node3 < Zorglub::Node
end
#
APP = Zorglub::App.new do
- map '/spec0', Node0
- map '/spec1', Node1
- map '/spec3', Node3
+ map '/node0', Node0
+ map '/node1', Node1
+ map '/node3', Node3
end
class Node2
- map APP, '/spec2'
+ map APP, '/node2'
end
#