aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/test/support
diff options
context:
space:
mode:
authorMarkus Reiter2016-11-21 10:25:30 +0100
committerGitHub2016-11-21 10:25:30 +0100
commitcc7541cbc43fed20626f654dcea74c2a4951706a (patch)
treee3fd573f6a4d7d130d6280f09ce2907b7d92626e /Library/Homebrew/cask/test/support
parent6b2242822b30f7a0d4c4399d782dc3d091aba12b (diff)
parentdf635c8259dffca891424352765088a3b88a87d2 (diff)
downloadbrew-cc7541cbc43fed20626f654dcea74c2a4951706a.tar.bz2
Merge pull request #1535 from umireon/cask-pkg-choice
Cask: Add the choices option to pkg stanza
Diffstat (limited to 'Library/Homebrew/cask/test/support')
-rw-r--r--Library/Homebrew/cask/test/support/Casks/with-choices.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Homebrew/cask/test/support/Casks/with-choices.rb b/Library/Homebrew/cask/test/support/Casks/with-choices.rb
new file mode 100644
index 000000000..1871efab3
--- /dev/null
+++ b/Library/Homebrew/cask/test/support/Casks/with-choices.rb
@@ -0,0 +1,16 @@
+test_cask 'with-choices' do
+ version '1.2.3'
+ sha256 '8c62a2b791cf5f0da6066a0a4b6e85f62949cd60975da062df44adf887f4370b'
+
+ url "file://#{TEST_FIXTURE_DIR}/cask/MyFancyPkg.zip"
+ homepage 'http://example.com/fancy-pkg'
+
+ pkg 'MyFancyPkg/Fancy.pkg',
+ choices: [
+ {
+ 'choiceIdentifier' => 'choice1',
+ 'choiceAttribute' => 'selected',
+ 'attributeSetting' => 1,
+ },
+ ]
+end