summaryrefslogtreecommitdiffstats
path: root/spec/spot_spec.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-18 11:40:38 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-18 11:40:38 +0200
commit3e01a17ec9ed22867b409ffedab20e160de90ff7 (patch)
treed6708850502d3b320c4ea1c8bd2e37bd68a9b9c2 /spec/spot_spec.rb
parent18164a443ff6a6c4547e54357e48cd473298a806 (diff)
downloadedoors-ruby-3e01a17ec9ed22867b409ffedab20e160de90ff7.zip
edoors-ruby-3e01a17ec9ed22867b409ffedab20e160de90ff7.tar.gz
social skills failure ;) evendoors-ruby is renamed into iotas
Diffstat (limited to 'spec/spot_spec.rb')
-rw-r--r--spec/spot_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/spot_spec.rb b/spec/spot_spec.rb
index 94d415d..eb64f33 100644
--- a/spec/spot_spec.rb
+++ b/spec/spot_spec.rb
@@ -4,10 +4,10 @@
require 'spec_helper'
#
-describe EvenDoors::Spot do
+describe Iotas::Spot do
#
it "path construction" do
- class S<EvenDoors::Spot
+ class S<Iotas::Spot
def add_spot s
end
end
@@ -16,9 +16,9 @@ describe EvenDoors::Spot do
s2 = S.new 'room1', s1
s3 = S.new 'door', s2
s3.path.should eql 'top/room0/room1/door'
- lambda { EvenDoors::Spot.new('do/or0', nil) }.should raise_error(EvenDoors::Exception)
- lambda { EvenDoors::Spot.new('/door0', nil) }.should raise_error(EvenDoors::Exception)
- lambda { EvenDoors::Spot.new('door0/', nil) }.should raise_error(EvenDoors::Exception)
+ lambda { Iotas::Spot.new('do/or0', nil) }.should raise_error(Iotas::Exception)
+ lambda { Iotas::Spot.new('/door0', nil) }.should raise_error(Iotas::Exception)
+ lambda { Iotas::Spot.new('door0/', nil) }.should raise_error(Iotas::Exception)
end
#
end