minio-mc: use assert_predicate instead of File.exist?

This commit is contained in:
ilovezfs 2017-10-06 02:47:49 -07:00
parent 96a5d6caf2
commit 60658d968b

View file

@ -46,6 +46,6 @@ class MinioMc < Formula
test do
system bin/"mc", "mb", testpath/"test"
assert File.exist?(testpath/"test")
assert_predicate testpath/"test", :exist?
end
end