diff options
| author | Alyssa Ross | 2016-09-18 21:43:46 +0100 |
|---|---|---|
| committer | Alyssa Ross | 2016-09-18 21:43:54 +0100 |
| commit | 912b8d47767d4f963cae9e9698e29590d9d9d69b (patch) | |
| tree | 6571b43a52ea0f0f511a64b5c3627422516f937f /Library | |
| parent | 49bfb3fb4a29c28e2a32e2421dae680dafcf121d (diff) | |
| download | brew-912b8d47767d4f963cae9e9698e29590d9d9d69b.tar.bz2 | |
formula tests: more consistent names
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/test/test_formula.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Homebrew/test/test_formula.rb b/Library/Homebrew/test/test_formula.rb index 393a0e216..15506a8e2 100644 --- a/Library/Homebrew/test/test_formula.rb +++ b/Library/Homebrew/test/test_formula.rb @@ -663,19 +663,19 @@ class OutdatedVersionsTests < Homebrew::TestCase refute_predicate f.outdated_kegs, :empty? end - def test_same_head_installed + def test_outdated_same_head_installed f.instance_variable_set(:@tap, CoreTap.instance) setup_tab_for_prefix(head_prefix, tap: "homebrew/core") assert_predicate f.outdated_kegs, :empty? end - def test_different_head_installed + def test_outdated_different_head_installed f.instance_variable_set(:@tap, CoreTap.instance) setup_tab_for_prefix(head_prefix, tap: "user/repo") assert_predicate f.outdated_kegs, :empty? end - def test_mixed_taps_greater_version_installed + def test_outdated_mixed_taps_greater_version_installed f.instance_variable_set(:@tap, CoreTap.instance) setup_tab_for_prefix(outdated_prefix, tap: "homebrew/core") setup_tab_for_prefix(greater_prefix, tap: "user/repo") @@ -688,7 +688,7 @@ class OutdatedVersionsTests < Homebrew::TestCase assert_predicate f.outdated_kegs, :empty? end - def test_mixed_taps_outdated_version_installed + def test_outdated_mixed_taps_outdated_version_installed f.instance_variable_set(:@tap, CoreTap.instance) extra_outdated_prefix = HOMEBREW_CELLAR/"#{f.name}/1.0" @@ -705,7 +705,7 @@ class OutdatedVersionsTests < Homebrew::TestCase refute_predicate f.outdated_kegs, :empty? end - def test_same_version_tap_installed + def test_outdated_same_version_tap_installed f.instance_variable_set(:@tap, CoreTap.instance) setup_tab_for_prefix(same_prefix, tap: "homebrew/core") |
