the IP Addresses' do Chef::Recipe.any_instance.stub(:search) .with(:node, 'role:web') .and_yield(Hashie::Mash.new(ipaddress: '1.2.3.4')) expect(chef_run).to warn('1.2.3.4') end
the username' do Chef::Recipe.any_instance.stub(:data_bag_item) .with(:users) .and_return(Hashie::Mash.new(username: 'seth')) expect(chef_run).to warn('seth') end