diff options
| author | Markus Reiter | 2016-11-21 10:25:30 +0100 |
|---|---|---|
| committer | GitHub | 2016-11-21 10:25:30 +0100 |
| commit | cc7541cbc43fed20626f654dcea74c2a4951706a (patch) | |
| tree | e3fd573f6a4d7d130d6280f09ce2907b7d92626e /Library/Homebrew/cask/test/support | |
| parent | 6b2242822b30f7a0d4c4399d782dc3d091aba12b (diff) | |
| parent | df635c8259dffca891424352765088a3b88a87d2 (diff) | |
| download | brew-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.rb | 16 |
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 |
