aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/test_options.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-27 14:08:14 -0500
committerJack Nagel2014-08-27 14:08:14 -0500
commitf7f8ca45fca35e04b962e847cc51e8ce4385ceae (patch)
treefff1a979cc20d129ebdda9a2f5fa89b8b5041f51 /Library/Homebrew/test/test_options.rb
parentf5d18cceb604875f8bb93ab97c6d7838cc9e844d (diff)
downloadbrew-f7f8ca45fca35e04b962e847cc51e8ce4385ceae.tar.bz2
Remove to_str from Option
We no longer need implicit conversion of options to strings.
Diffstat (limited to 'Library/Homebrew/test/test_options.rb')
-rw-r--r--Library/Homebrew/test/test_options.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Homebrew/test/test_options.rb b/Library/Homebrew/test/test_options.rb
index 06d3c246e..25049ded5 100644
--- a/Library/Homebrew/test/test_options.rb
+++ b/Library/Homebrew/test/test_options.rb
@@ -10,10 +10,6 @@ class OptionTests < Homebrew::TestCase
assert_equal "--foo", @option.to_s
end
- def test_to_str
- assert_equal "--foo", @option.to_str
- end
-
def test_equality
foo = Option.new("foo")
bar = Option.new("bar")