aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorJack Nagel2014-08-02 20:03:42 -0500
committerJack Nagel2014-08-02 20:03:42 -0500
commitfccfddb5105b82df35ea4296c4bb5b1d95b57651 (patch)
tree3176a2a5c1cf960fd61177bf9bc0a0124be053b8 /Library/Homebrew/test
parent018aeb05ab74629f761741e51436a358db6feb9d (diff)
downloadbrew-fccfddb5105b82df35ea4296c4bb5b1d95b57651.tar.bz2
Partially revert e1f97e2 to pass new test cases
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_stdlib.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/test/test_stdlib.rb b/Library/Homebrew/test/test_stdlib.rb
index 55b10641c..50594465c 100644
--- a/Library/Homebrew/test/test_stdlib.rb
+++ b/Library/Homebrew/test/test_stdlib.rb
@@ -57,5 +57,9 @@ class CxxStdlibTests < Homebrew::TestCase
def test_compatibility_for_non_cxx_software
assert @purec.compatible_with?(@clang)
+ assert @clang.compatible_with?(@purec)
+ assert @purec.compatible_with?(@purec)
+ assert @purec.compatible_with?(@gcc48)
+ assert @gcc48.compatible_with?(@purec)
end
end