Sha256: ab5066b5715b904a0f0d669e209de39c4fbb47693a137b38aba6e5a2ad9b1537
Contents?: true
Size: 1.62 KB
Versions: 5
Compression:
Stored size: 1.62 KB
Contents
require 'test_helper' require 'support/kitchen_helper' require 'chef/knife/solo_init' class SoloInitTest < TestCase include KitchenHelper def test_produces_folders in_kitchen do assert File.exist?("nodes") end end def test_produces_gitkeep_in_folders in_kitchen do assert File.exist?("nodes/.gitkeep") end end def test_barks_without_directory_arg cmd = command cmd.ui.expects(:err).with(regexp_matches(/You must specify a directory/)) $stdout.stubs(:puts) outside_kitchen do assert_exits cmd end end def test_takes_directory_as_arg outside_kitchen do command("new_kitchen").run assert File.exist?("new_kitchen/nodes") end end def test_wont_create_cheffile_by_default in_kitchen do refute File.exist?("Cheffile") end end def test_creates_cheffile_if_specified outside_kitchen do command("foo", "--librarian").run assert File.exist?("foo/Cheffile") end end def test_wont_overwrite_cheffile outside_kitchen do File.open("Cheffile", "w") do |f| f << "testdata" end command(".", "--librarian").run assert_equal "testdata", IO.read("Cheffile") end end def test_creates_gitignore_for_librarian outside_kitchen do command("bar", "--librarian").run assert File.exist?("bar/.gitignore") end end def test_wont_create_gitignore_for_librarian_if_denied outside_kitchen do command(".", "--librarian", "--no-git").run refute File.exist?(".gitignore") end end def command(*args) knife_command(Chef::Knife::SoloInit, *args) end end
Version data entries
5 entries across 5 versions & 1 rubygems