2017-02-23 06:00:23 +01:00
|
|
|
describe "brew --env", :integration_test do
|
|
|
|
it "prints the Homebrew build environment variables" do
|
|
|
|
expect { brew "--env" }
|
|
|
|
.to output(/CMAKE_PREFIX_PATH="#{Regexp.escape(HOMEBREW_PREFIX)}[:"]/).to_stdout
|
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "--shell=bash" do
|
|
|
|
it "prints the Homebrew build environment variables in Bash syntax" do
|
|
|
|
expect { brew "--env", "--shell=bash" }
|
2017-04-27 20:17:06 +02:00
|
|
|
.to output(/export CMAKE_PREFIX_PATH="#{Regexp.quote(HOMEBREW_PREFIX)}"/).to_stdout
|
2017-02-23 06:00:23 +01:00
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "--shell=fish" do
|
|
|
|
it "prints the Homebrew build environment variables in Fish syntax" do
|
|
|
|
expect { brew "--env", "--shell=fish" }
|
2017-04-27 20:17:06 +02:00
|
|
|
.to output(/set [-]gx CMAKE_PREFIX_PATH "#{Regexp.quote(HOMEBREW_PREFIX)}"/).to_stdout
|
2017-02-23 06:00:23 +01:00
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "--shell=tcsh" do
|
|
|
|
it "prints the Homebrew build environment variables in Tcsh syntax" do
|
|
|
|
expect { brew "--env", "--shell=tcsh" }
|
2017-04-27 20:17:06 +02:00
|
|
|
.to output(/setenv CMAKE_PREFIX_PATH #{Regexp.quote(HOMEBREW_PREFIX)};/).to_stdout
|
2017-02-23 06:00:23 +01:00
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "--plain" do
|
|
|
|
it "prints the Homebrew build environment variables without quotes" do
|
|
|
|
expect { brew "--env", "--plain" }
|
|
|
|
.to output(/CMAKE_PREFIX_PATH: #{Regexp.quote(HOMEBREW_PREFIX)}/).to_stdout
|
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|