mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
404 B
Ruby
14 lines
404 B
Ruby
require "test/support/helper/spec/shared_examples/hbc_dsl_base"
|
|
require "test/support/helper/spec/shared_examples/hbc_staged"
|
|
|
|
describe Hbc::DSL::Postflight, :cask do
|
|
let(:cask) { Hbc::CaskLoader.load(cask_path("basic-cask")) }
|
|
let(:dsl) { Hbc::DSL::Postflight.new(cask, Hbc::FakeSystemCommand) }
|
|
|
|
it_behaves_like Hbc::DSL::Base
|
|
|
|
it_behaves_like Hbc::Staged do
|
|
let(:staged) { dsl }
|
|
end
|
|
end
|