mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
26 lines
566 B
Ruby
26 lines
566 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cask/dsl/base"
|
|
|
|
RSpec.shared_examples Cask::DSL::Base do
|
|
it "supports the token method" do
|
|
expect(dsl.token).to eq(cask.token)
|
|
end
|
|
|
|
it "supports the version method" do
|
|
expect(dsl.version).to eq(cask.version)
|
|
end
|
|
|
|
it "supports the caskroom_path method" do
|
|
expect(dsl.caskroom_path).to eq(cask.caskroom_path)
|
|
end
|
|
|
|
it "supports the staged_path method" do
|
|
expect(dsl.staged_path).to eq(cask.staged_path)
|
|
end
|
|
|
|
it "supports the appdir method" do
|
|
expect(dsl.appdir).to eq(cask.appdir)
|
|
end
|
|
end
|