diff options
| author | Jack Nagel | 2013-06-08 21:26:23 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-08 21:32:26 -0500 |
| commit | 1292f58f7dab93770d9c4e7f0d150377701ad970 (patch) | |
| tree | 90f6c5458c2413833e64e1dc4f18cb97be1a82cc | |
| parent | 5d1320d1ff717a0cb5f93c41e0616bfeec11295c (diff) | |
| download | homebrew-1292f58f7dab93770d9c4e7f0d150377701ad970.tar.bz2 | |
mp3fs: use test assertion
| -rw-r--r-- | Library/Formula/mp3fs.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/mp3fs.rb b/Library/Formula/mp3fs.rb index 74edfa771..b1f2aaebd 100644 --- a/Library/Formula/mp3fs.rb +++ b/Library/Formula/mp3fs.rb @@ -20,7 +20,7 @@ class Mp3fs < Formula test do require 'open3' Open3.popen3("#{bin}/mp3fs", "-V") do |_, stdout, _| - /MP3FS version #{Regexp.escape(version)}/ === stdout.read + assert_match /MP3FS version #{Regexp.escape(version)}/, stdout.read end end end |
