Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test Specs] Use external specs for tests #5363

Merged
merged 2 commits into from May 19, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Expand Up @@ -10,3 +10,6 @@
[submodule "spec/cocoapods-integration-specs"]
path = spec/cocoapods-integration-specs
url = https://github.com/CocoaPods/cocoapods-integration-specs.git
[submodule "spec/fixtures/spec-repos/test_repo"]
path = spec/fixtures/spec-repos/test_repo
url = https://github.com/CocoaPods/cocoapods-test-specs.git
1 change: 1 addition & 0 deletions spec/fixtures/spec-repos/test_repo
Submodule test_repo added at 1d4e3f
21 changes: 0 additions & 21 deletions spec/fixtures/spec-repos/test_repo/BananaLib/1.0/BananaLib.podspec

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions spec/fixtures/spec-repos/test_repo/JSONKit/1.4/JSONKit.podspec

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions spec/fixtures/spec-repos/test_repo/monkey/1.0.2/monkey.podspec

This file was deleted.

2 changes: 2 additions & 0 deletions spec/spec_helper/temporary_repos.rb
Expand Up @@ -54,6 +54,7 @@ def set_up_test_repo
origin = ROOT + 'spec/fixtures/spec-repos/test_repo/.'
destination = tmp_repos_path + 'master'
FileUtils.cp_r(origin, destination)
FileUtils.rm_r(destination + './.git')
repo_make('master')
end

Expand All @@ -70,6 +71,7 @@ def set_up_old_test_repo
origin = ROOT + 'spec/fixtures/spec-repos/test_repo/.'
destination = tmp_repos_path + '../master'
FileUtils.cp_r(origin, destination)
FileUtils.rm_r(destination + './.git')
repo_make('../master')
end

Expand Down