aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-08 21:26:19 -0500
committerJack Nagel2013-06-08 21:32:22 -0500
commit47ef70401bf09461ade087a5f3cbbf1f7c4d744d (patch)
treec573fe57dca10208bcad6f9e5dcf20abd5fa257e /Library/Formula
parent814646d39c4cc3b3232ff929e2dd47a95585e59b (diff)
downloadhomebrew-47ef70401bf09461ade087a5f3cbbf1f7c4d744d.tar.bz2
cloog: use test assertion
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cloog.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/cloog.rb b/Library/Formula/cloog.rb
index 13329b1b5..3e0bd19d1 100644
--- a/Library/Formula/cloog.rb
+++ b/Library/Formula/cloog.rb
@@ -37,7 +37,7 @@ class Cloog < Formula
Open3.popen3("#{bin}/cloog", "/dev/stdin") do |stdin, stdout, _|
stdin.write(cloog_source)
stdin.close
- /Generated from \/dev\/stdin by CLooG/ === stdout.read
+ assert_match /Generated from \/dev\/stdin by CLooG/, stdout.read
end
end
end