Skip to content
Snippets Groups Projects
Commit 0c140f09 authored by Markus Reiter's avatar Markus Reiter Committed by GitHub
Browse files

Merge pull request #1353 from reitermarkus/fix-linked-caskroom-tap

Use proper path to `caskroom/cask` tap in `test_helper`.
parents 5a03b492 ddcab26a
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ describe Hbc::CLI::Create do
end
after do
%w[new-cask additional-cask another-cask yet-another-cask feine].each do |cask|
%w[new-cask additional-cask another-cask yet-another-cask local-caff].each do |cask|
path = Hbc.path(cask)
path.delete if path.exist?
end
......@@ -71,14 +71,14 @@ describe Hbc::CLI::Create do
it "raises an exception when the Cask already exists" do
lambda {
Hbc::CLI::Create.run("caffeine")
Hbc::CLI::Create.run("basic-cask")
}.must_raise Hbc::CaskAlreadyCreatedError
end
it "allows creating Casks that are substrings of existing Casks" do
Hbc::CLI::Create.run("feine")
Hbc::CLI::Create.run("local-caff")
Hbc::CLI::Create.editor_commands.must_equal [
[Hbc.path("feine")],
[Hbc.path("local-caff")],
]
end
......
......@@ -50,7 +50,7 @@ Hbc.default_tap = Tap.fetch("caskroom", "test").tap do |tap|
end
# pretend that the caskroom/cask Tap is installed
FileUtils.ln_s HOMEBREW_LIBRARY.join("Taps", "caskroom", "homebrew-cask"), Tap.fetch("caskroom", "cask").path
FileUtils.ln_s Pathname.new(ENV["HOMEBREW_LIBRARY"]).join("Taps", "caskroom", "homebrew-cask"), Tap.fetch("caskroom", "cask").path
class TestHelper
# helpers for test Casks to reference local files easily
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment