bsdmake: use assert_predicate instead of File.exist?

This commit is contained in:
ilovezfs 2017-10-06 03:12:35 -07:00
parent baa7101499
commit 2269ba3658

View file

@ -75,6 +75,6 @@ class Bsdmake < Formula
EOS
system "#{bin}/bsdmake"
assert File.exist? "#{testpath}/foo"
assert_predicate testpath/"foo", :exist?
end
end