aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorJack Nagel2014-08-10 22:55:28 -0500
committerJack Nagel2014-08-10 22:55:28 -0500
commit161778f0f457cd766eb4edf075897d20e9c70373 (patch)
treed26c524e9e6d7bdc4997bc83f1edcbf89e51fc2d /Library/Homebrew/test
parent8beb85a7fc022723a39562d7ae7b4c4b62659eb5 (diff)
downloadbrew-161778f0f457cd766eb4edf075897d20e9c70373.tar.bz2
Stop exposing defined options from the build object
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_build_options.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/Library/Homebrew/test/test_build_options.rb b/Library/Homebrew/test/test_build_options.rb
index 4fa332230..072e7b72b 100644
--- a/Library/Homebrew/test/test_build_options.rb
+++ b/Library/Homebrew/test/test_build_options.rb
@@ -10,11 +10,6 @@ class BuildOptionsTests < Homebrew::TestCase
@build = BuildOptions.new(args, opts)
end
- def test_as_flags
- assert_equal %w{--with-foo --with-bar --without-baz --without-qux}.sort,
- @build.as_flags.sort
- end
-
def test_include
assert_includes @build, "with-foo"
refute_includes @build, "with-qux"