aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorJack Nagel2013-10-04 21:19:15 -0500
committerJack Nagel2013-10-04 21:19:15 -0500
commit50c7c6bbd6eac0dfb1d3c48e7d0ee49e667b315c (patch)
treefb8bdef10c529354207500ed336f6f866919573e /Library/Homebrew/test
parent43f0c631357a01f01cea20ebad6d136388689fec (diff)
downloadbrew-50c7c6bbd6eac0dfb1d3c48e7d0ee49e667b315c.tar.bz2
Check types in Formula#==
Comparing two objects should not raise an exception, even if they have different types. The semantics of #== are now the same as #eql?, so make one an alias.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_formula.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/test/test_formula.rb b/Library/Homebrew/test/test_formula.rb
index 1591b425b..bc1e703eb 100644
--- a/Library/Homebrew/test/test_formula.rb
+++ b/Library/Homebrew/test/test_formula.rb
@@ -124,6 +124,10 @@ class FormulaTests < Test::Unit::TestCase
assert !y.eql?(x)
end
+ def test_comparison_with_non_formula_objects_does_not_raise
+ assert_not_equal TestBall.new, Object.new
+ end
+
def test_class_naming
assert_equal 'ShellFm', Formula.class_s('shell.fm')
assert_equal 'Fooxx', Formula.class_s('foo++')