diff options
Diffstat (limited to 'spec/spin_spec.rb')
-rw-r--r-- | spec/spin_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/spin_spec.rb b/spec/spin_spec.rb index 9d73b90..d72bcc6 100644 --- a/spec/spin_spec.rb +++ b/spec/spin_spec.rb @@ -86,10 +86,10 @@ describe Edoors::Spin do it "option debug" do spin = Edoors::Spin.new 'dom0' spin.debug_routing.should be false - spin.debug_errors.should be false - spin = Edoors::Spin.new 'dom0', :debug_routing=>true, :debug_errors=>true + spin.debug_garbage.should be false + spin = Edoors::Spin.new 'dom0', :debug_routing=>true, :debug_garbage=>true spin.debug_routing.should be true - spin.debug_errors.should be true + spin.debug_garbage.should be true end # it "spin->json->spin" do @@ -119,7 +119,7 @@ describe Edoors::Spin do p0.add_dst Edoors::SYS_ACT_HIBERNATE Edoors::Room.new 'input', spin Edoors::Room.new 'output', spin - spin.add_link Edoors::Link.new('input', 'output', nil, nil, nil) + spin.add_link Edoors::Link.new('input', 'output', nil, nil) spin.send_sys_p p0 spin.spin! dom0 = Edoors::Spin.resume! spin.hibernate_path |