homebrew-cask-versions/spec/spec_helper.rb
Roland Walker dd8aa7904d require mocha/api for RSpec tests
to be removed from Homebrew-fork
2014-12-19 10:30:14 -05:00

24 lines
669 B
Ruby

project_root = Pathname(File.expand_path("../..", __FILE__))
Dir["#{project_root}/spec/support/**/*.rb"].each { |f| require f }
include HomebrewTestingEnvironment
# from Homebrew. Provides expects method.
require 'mocha/api'
# add homebrew-cask lib to load path
$:.push(project_root.join('lib').to_s)
require 'cask'
# Look for Casks in testcasks by default. It is elsewhere required that
# the string "test" appear in the directory name.
Cask.default_tap = 'caskroom/homebrew-testcasks'
# our own testy caskroom
Cask.caskroom = HOMEBREW_PREFIX.join('TestCaskroom')
RSpec.configure do |config|
config.include ShutupHelper
config.include TempEnvVarHelper
end