diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/test/test_search_remote_tap.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Homebrew/test/test_search_remote_tap.rb b/Library/Homebrew/test/test_search_remote_tap.rb new file mode 100644 index 000000000..9dd9ee654 --- /dev/null +++ b/Library/Homebrew/test/test_search_remote_tap.rb @@ -0,0 +1,19 @@ +require "testing_env" +require "cmd/search" + +class SearchRemoteTapTests < Homebrew::TestCase + def test_search_remote_tap + json_response = { + "tree" => [ + { + "path" => "Formula/not-a-formula.rb", + "type" => "blob", + }, + ], + } + + GitHub.stubs(:open).yields(json_response) + + assert_equal ["homebrew/not-a-tap/not-a-formula"], Homebrew.search_tap("homebrew", "not-a-tap", "not-a-formula") + end +end |
