blob: aa662e4d0224adf76388352a88237f8b5b684784 (
plain)
1
2
3
4
5
6
7
8
9
10
|
require "test/support/helper/spec/shared_examples/hbc_dsl_base"
describe Hbc::DSL::Caveats, :cask do
let(:cask) { Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/basic-cask.rb") }
let(:dsl) { Hbc::DSL::Caveats.new(cask) }
it_behaves_like Hbc::DSL::Base
# TODO: add tests for Caveats DSL methods
end
|