Sha256: 545c14d67a0e577dfce99f72671511fe1f823225ab9094cdbfe349cb5c7669fd
Contents?: true
Size: 634 Bytes
Versions: 112
Compression:
Stored size: 634 Bytes
Contents
require 'spec_helper' describe Chef::Knife::TagCreate do before(:each) do Chef::Config[:node_name] = "webmonkey.example.com" @knife = Chef::Knife::TagCreate.new @knife.name_args = [ Chef::Config[:node_name], "happytag" ] @node = Chef::Node.new @node.stub! :save Chef::Node.stub!(:load).and_return @node @stdout = StringIO.new @knife.ui.stub!(:stdout).and_return(@stdout) end describe "run" do it "can create tags on a node" do @knife.run @node.tags.should == ["happytag"] @stdout.string.should match /created tags happytag.+node webmonkey.example.com/i end end end
Version data entries
112 entries across 112 versions & 2 rubygems