aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/cask/cli
diff options
context:
space:
mode:
authorMarkus Reiter2017-03-06 04:31:16 +0100
committerMarkus Reiter2017-03-06 04:31:16 +0100
commit6bc1d0b5c1ec7f5670c17e48065fc8e9b6c03daa (patch)
treef1190d19cd24c0df72bd248a363484ab1d49215b /Library/Homebrew/test/cask/cli
parentc349b37b4fc5c0856e5a93e059494824e41f4a0e (diff)
downloadbrew-6bc1d0b5c1ec7f5670c17e48065fc8e9b6c03daa.tar.bz2
Add missing `:cask` metadata to specs.
Diffstat (limited to 'Library/Homebrew/test/cask/cli')
-rw-r--r--Library/Homebrew/test/cask/cli/doctor_spec.rb4
-rw-r--r--Library/Homebrew/test/cask/cli/style_spec.rb2
2 files changed, 2 insertions, 4 deletions
diff --git a/Library/Homebrew/test/cask/cli/doctor_spec.rb b/Library/Homebrew/test/cask/cli/doctor_spec.rb
index ff1cf5706..b24c777eb 100644
--- a/Library/Homebrew/test/cask/cli/doctor_spec.rb
+++ b/Library/Homebrew/test/cask/cli/doctor_spec.rb
@@ -1,6 +1,4 @@
-require "hbc/version"
-
-describe Hbc::CLI::Doctor do
+describe Hbc::CLI::Doctor, :cask do
it "displays some nice info about the environment" do
expect {
Hbc::CLI::Doctor.run
diff --git a/Library/Homebrew/test/cask/cli/style_spec.rb b/Library/Homebrew/test/cask/cli/style_spec.rb
index 106bfbb44..3f2ec91e2 100644
--- a/Library/Homebrew/test/cask/cli/style_spec.rb
+++ b/Library/Homebrew/test/cask/cli/style_spec.rb
@@ -2,7 +2,7 @@ require "English"
require "open3"
require "rubygems"
-describe Hbc::CLI::Style do
+describe Hbc::CLI::Style, :cask do
let(:args) { [] }
let(:cli) { described_class.new(args) }