2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2025-03-18 17:38:37 +00:00
|
|
|
require "cmd/bundle"
|
2024-04-02 11:43:41 -07:00
|
|
|
require "cmd/shared_examples/args_parse"
|
2017-02-23 05:59:04 +01:00
|
|
|
|
2025-03-18 17:38:37 +00:00
|
|
|
RSpec.describe Homebrew::Cmd::Bundle do
|
|
|
|
it_behaves_like "parseable arguments"
|
2024-04-02 11:43:41 -07:00
|
|
|
|
2025-03-18 17:38:37 +00:00
|
|
|
it "checks if a Brewfile's dependencies are satisfied", :integration_test do
|
2024-04-02 11:43:41 -07:00
|
|
|
HOMEBREW_REPOSITORY.cd do
|
|
|
|
system "git", "init"
|
|
|
|
system "git", "commit", "--allow-empty", "-m", "This is a test commit"
|
|
|
|
end
|
2017-02-23 05:59:04 +01:00
|
|
|
|
2024-04-02 11:43:41 -07:00
|
|
|
mktmpdir do |path|
|
|
|
|
FileUtils.touch "#{path}/Brewfile"
|
|
|
|
path.cd do
|
|
|
|
expect { brew "bundle", "check" }
|
|
|
|
.to output("The Brewfile's dependencies are satisfied.\n").to_stdout
|
|
|
|
.and not_to_output.to_stderr
|
|
|
|
.and be_a_success
|
2017-02-23 05:59:04 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|