aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cmd/--cache_spec.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-23 05:59:16 +0100
committerMarkus Reiter2017-02-23 21:39:39 +0100
commit2bdeb8d0523ee2a2576026c309d342bcb9ef08c9 (patch)
tree26e98a0085b4af3f595ae4cdd68e639feecbca4e /Library/Homebrew/test/cmd/--cache_spec.rb
parentc7121f6be50e44784e3e29114617c29715bd9c0f (diff)
downloadbrew-2bdeb8d0523ee2a2576026c309d342bcb9ef08c9.tar.bz2
Convert `brew --cache` test to spec.
Diffstat (limited to 'Library/Homebrew/test/cmd/--cache_spec.rb')
-rw-r--r--Library/Homebrew/test/cmd/--cache_spec.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Homebrew/test/cmd/--cache_spec.rb b/Library/Homebrew/test/cmd/--cache_spec.rb
new file mode 100644
index 000000000..fb3c9cee6
--- /dev/null
+++ b/Library/Homebrew/test/cmd/--cache_spec.rb
@@ -0,0 +1,15 @@
+describe "brew --cache", :integration_test do
+ it "print the location of Homebrew's cache when no argument is given" do
+ expect { brew "--cache" }
+ .to output("#{HOMEBREW_CACHE}\n").to_stdout
+ .and not_to_output.to_stderr
+ .and be_a_success
+ end
+
+ it "prints all cache files for a given Formula" do
+ expect { brew "--cache", testball }
+ .to output(%r{#{HOMEBREW_CACHE}/testball-}).to_stdout
+ .and not_to_output.to_stderr
+ .and be_a_success
+ end
+end