little-cms2: use assert_predicate instead of File.exist?

This commit is contained in:
ilovezfs 2017-10-06 02:08:08 -07:00
parent 444214a9b2
commit 3ec7a2856f

View file

@ -27,6 +27,6 @@ class LittleCms2 < Formula
test do
system "#{bin}/jpgicc", test_fixtures("test.jpg"), "out.jpg"
assert File.exist?("out.jpg")
assert_predicate testpath/"out.jpg", :exist?
end
end