summaryrefslogtreecommitdiffstats
path: root/spec/unit/indirector/code_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/indirector/code_spec.rb')
-rwxr-xr-xspec/unit/indirector/code_spec.rb42
1 files changed, 21 insertions, 21 deletions
diff --git a/spec/unit/indirector/code_spec.rb b/spec/unit/indirector/code_spec.rb
index 3eb7540ef..916469a14 100755
--- a/spec/unit/indirector/code_spec.rb
+++ b/spec/unit/indirector/code_spec.rb
@@ -4,30 +4,30 @@ require File.dirname(__FILE__) + '/../../spec_helper'
require 'puppet/indirector/code'
describe Puppet::Indirector::Code do
- before do
- Puppet::Indirector::Terminus.stubs(:register_terminus_class)
- @model = mock 'model'
- @indirection = stub 'indirection', :name => :mystuff, :register_terminus_type => nil, :model => @model
- Puppet::Indirector::Indirection.stubs(:instance).returns(@indirection)
+ before do
+ Puppet::Indirector::Terminus.stubs(:register_terminus_class)
+ @model = mock 'model'
+ @indirection = stub 'indirection', :name => :mystuff, :register_terminus_type => nil, :model => @model
+ Puppet::Indirector::Indirection.stubs(:instance).returns(@indirection)
- @code_class = Class.new(Puppet::Indirector::Code) do
- def self.to_s
- "Mystuff::Testing"
- end
- end
-
- @searcher = @code_class.new
+ @code_class = Class.new(Puppet::Indirector::Code) do
+ def self.to_s
+ "Mystuff::Testing"
+ end
end
- it "should not have a find() method defined" do
- @searcher.should_not respond_to(:find)
- end
+ @searcher = @code_class.new
+ end
- it "should not have a save() method defined" do
- @searcher.should_not respond_to(:save)
- end
+ it "should not have a find() method defined" do
+ @searcher.should_not respond_to(:find)
+ end
- it "should not have a destroy() method defined" do
- @searcher.should_not respond_to(:destroy)
- end
+ it "should not have a save() method defined" do
+ @searcher.should_not respond_to(:save)
+ end
+
+ it "should not have a destroy() method defined" do
+ @searcher.should_not respond_to(:destroy)
+ end
end