diff options
| author | Jack Nagel | 2014-08-08 23:31:55 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-08 23:31:58 -0500 |
| commit | 5dab3ee322a1fe8336d0fe7a7a7ee22467c982c7 (patch) | |
| tree | c7a29affa7b6cbec04f1f267a27a31f7a3d99237 /Library/Homebrew | |
| parent | 1b9c8069a1094850330cef893f1eeba0502ec68d (diff) | |
| download | homebrew-5dab3ee322a1fe8336d0fe7a7a7ee22467c982c7.tar.bz2 | |
Better assertions in tab test
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/test/test_tab.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/test/test_tab.rb b/Library/Homebrew/test/test_tab.rb index bb08cc5c3..4e0cd03f2 100644 --- a/Library/Homebrew/test/test_tab.rb +++ b/Library/Homebrew/test/test_tab.rb @@ -26,8 +26,8 @@ class TabTests < Homebrew::TestCase assert_empty tab.unused_options assert_empty tab.used_options assert_empty tab.options - refute tab.built_as_bottle - refute tab.poured_from_bottle + refute_predicate tab, :built_as_bottle + refute_predicate tab, :poured_from_bottle assert_empty tab.tapped_from assert_nil tab.time assert_nil tab.HEAD |
