diff options
| author | Masayuki Morita | 2017-01-08 18:00:31 +0900 |
|---|---|---|
| committer | Masayuki Morita | 2017-01-08 18:06:57 +0900 |
| commit | 560d5bdd7101d4e73f6501b5ac1601b0a434cece (patch) | |
| tree | 8d40e856d02d5528bfeb3a29f44d98ba342555c5 /Library/Homebrew/test | |
| parent | 335be35acf805a2853a6fe92b06d9a643616f463 (diff) | |
| download | brew-560d5bdd7101d4e73f6501b5ac1601b0a434cece.tar.bz2 | |
Validate a token when initializing GitHubPrivateRepositoryDownloadStrategy
Diffstat (limited to 'Library/Homebrew/test')
| -rw-r--r-- | Library/Homebrew/test/download_strategies_test.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Homebrew/test/download_strategies_test.rb b/Library/Homebrew/test/download_strategies_test.rb index 21f7e6906..ff4cbbf7a 100644 --- a/Library/Homebrew/test/download_strategies_test.rb +++ b/Library/Homebrew/test/download_strategies_test.rb @@ -65,6 +65,7 @@ class GitHubPrivateRepositoryDownloadStrategyTests < Homebrew::TestCase def setup resource = ResourceDouble.new("https://github.com/owner/repo/archive/1.1.5.tar.gz") ENV["HOMEBREW_GITHUB_API_TOKEN"] = "token" + GitHub.stubs(:repository).returns {} @strategy = GitHubPrivateRepositoryDownloadStrategy.new("foo", resource) end @@ -88,6 +89,7 @@ class GitHubPrivateRepositoryReleaseDownloadStrategyTests < Homebrew::TestCase def setup resource = ResourceDouble.new("https://github.com/owner/repo/releases/download/tag/foo_v0.1.0_darwin_amd64.tar.gz") ENV["HOMEBREW_GITHUB_API_TOKEN"] = "token" + GitHub.stubs(:repository).returns {} @strategy = GitHubPrivateRepositoryReleaseDownloadStrategy.new("foo", resource) end |
