diff options
| author | Eitot | 2016-10-23 17:32:19 +0200 |
|---|---|---|
| committer | Eitot | 2016-10-23 17:43:06 +0200 |
| commit | 0b176f9cc8ee4f95271fc398b6e9a521bda9ebdb (patch) | |
| tree | 65688fc105eb066ee98f0c5e81d6375d4e3476f0 /Library/Homebrew/cask/test | |
| parent | 773d20fb0c23439f3efbb9ecb1475c5cbe5b3957 (diff) | |
| download | brew-0b176f9cc8ee4f95271fc398b6e9a521bda9ebdb.tar.bz2 | |
Add dictionary artifact
Diffstat (limited to 'Library/Homebrew/cask/test')
| -rw-r--r-- | Library/Homebrew/cask/test/cask/cli/options_test.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Homebrew/cask/test/cask/cli/options_test.rb b/Library/Homebrew/cask/test/cask/cli/options_test.rb index 32bd2e2d7..d49e7827b 100644 --- a/Library/Homebrew/cask/test/cask/cli/options_test.rb +++ b/Library/Homebrew/cask/test/cask/cli/options_test.rb @@ -57,6 +57,20 @@ describe Hbc::CLI do Hbc.colorpickerdir.must_equal Pathname("/some/path/bar") end + it "supports setting the dictionarydir" do + Hbc::CLI.process_options %w[help --dictionarydir=/some/path/foo] + + Hbc.dictionarydir.must_equal Pathname("/some/path/foo") + end + + it "supports setting the dictionarydir from ENV" do + ENV["HOMEBREW_CASK_OPTS"] = "--dictionarydir=/some/path/bar" + + Hbc::CLI.process_options %w[help] + + Hbc.dictionarydir.must_equal Pathname("/some/path/bar") + end + it "supports setting the fontdir" do Hbc::CLI.process_options %w[help --fontdir=/some/path/foo] |
