Browse Source

Remove unnecessary TestCask references

master
Federico Bond 11 years ago
parent
commit
544f9bac95
  1. 2
      test/Casks/compliance_test.rb
  2. 3
      test/test_helper.rb

2
test/Casks/compliance_test.rb

@ -1,7 +1,7 @@
require 'test_helper'
describe "Casks" do
Cask.all.reject {|c| c.is_a?(TestCask) }.each do |cask|
Cask.all.each do |cask|
describe "#{cask}" do
it "passes audit" do
audit = Cask::Audit.new(cask)

3
test/test_helper.rb

@ -33,6 +33,3 @@ FileUtils.mkdir_p taps_dest
HOMEBREW_PREFIX.join('bin').mkdir
FileUtils.ln_s project_root, taps_dest/"homebrew-cask"
# Common superclass for tests casks for when we need to filter them out
class TestCask < Cask; end

Loading…
Cancel
Save