Sha256: 9138ef15ebf8e6803aeb66f8c89924766cc02c052be1ae5392220f134300d7af
Contents?: true
Size: 581 Bytes
Versions: 35
Compression:
Stored size: 581 Bytes
Contents
#!/usr/bin/env rspec require 'spec_helper' require 'puppet/indirector/run/local' describe Puppet::Run::Local do it "should be a sublcass of Puppet::Indirector::Code" do Puppet::Run::Local.superclass.should equal(Puppet::Indirector::Code) end it "should call runner.run on save and return the runner" do runner = Puppet::Run.new runner.stubs(:run).returns(runner) request = Puppet::Indirector::Request.new(:indirection, :save, "anything") request.instance = runner = Puppet::Run.new Puppet::Run::Local.new.save(request).should == runner end end
Version data entries
35 entries across 35 versions & 3 rubygems