AFNetworking/Tests/Podfile
Blake Watters 4f04b35378 Reorganize testing setup
* Eliminate static library and framework targets
* Migrate all testing infrastructure and code to Tests/
* Nest CocoaPods setup for testing under Tests/
* Remove explicit dependencies from shared schemes
2013-05-11 13:18:43 -04:00

20 lines
315 B
Ruby

xcodeproj 'AFNetworking Tests'
workspace '../AFNetworking'
inhibit_all_warnings!
def import_pods
pod 'OCMock', '2.1.1'
pod 'Expecta', '0.2.1'
end
target :ios do
platform :ios, '5.0'
link_with 'iOS Tests'
import_pods
end
target :osx do
platform :osx, '10.7'
link_with 'OS X Tests'
import_pods
end