Sha256: a0ade4fa1f44445d839eecf4405bb5d6665319c59433dddcd5968dbc12198d04
Contents?: true
Size: 631 Bytes
Versions: 49
Compression:
Stored size: 631 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
49 entries across 49 versions & 1 rubygems