Sha256: 38be0d21691e56f83ae89e487c4317fcaf37f7815390ce25efd70f00e340f10a

Contents?: true

Size: 979 Bytes

Versions: 9

Compression:

Stored size: 979 Bytes

Contents

#!/usr/bin/env ruby

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)

        @code_class = Class.new(Puppet::Indirector::Code) do
            def self.to_s
                "Mystuff::Testing"
            end
        end

        @searcher = @code_class.new
    end

    it "should not have a find() method defined" do
        @searcher.should_not respond_to(:find)
    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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
puppet-0.25.5 spec/unit/indirector/code.rb
puppet-0.25.4 spec/unit/indirector/code.rb
puppet-0.25.3 spec/unit/indirector/code.rb
puppet-0.24.9 spec/unit/indirector/code.rb
puppet-0.25.2 spec/unit/indirector/code.rb
puppet-0.25.1 spec/unit/indirector/code.rb
puppet-0.25.0 spec/unit/indirector/code.rb
puppet-0.24.7 spec/unit/indirector/code.rb
puppet-0.24.8 spec/unit/indirector/code.rb