From f3530acfceccea22c95cd3ce094e82e198b76249 Mon Sep 17 00:00:00 2001 From: Jorge Canizales <jcanizales@google.com> Date: Tue, 26 May 2015 14:34:46 -0700 Subject: [PATCH] Podfile to link RxLibrary to its unit tests --- src/objective-c/tests/Podfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/objective-c/tests/Podfile diff --git a/src/objective-c/tests/Podfile b/src/objective-c/tests/Podfile new file mode 100644 index 0000000000..6df063a380 --- /dev/null +++ b/src/objective-c/tests/Podfile @@ -0,0 +1,12 @@ +source 'https://github.com/CocoaPods/Specs.git' +platform :ios, '8.0' + +pod 'gRPC/RxLibrary', :path => "../../.." + +link_with 'AllTests' + +target 'Tests' do +end + +target 'AllTests' do +end -- GitLab