Last active
August 29, 2015 14:21
-
-
Save benvium/49a99c87b35447ad7cf3 to your computer and use it in GitHub Desktop.
Podfile demonstrating how to set up Realm for XCTest Unit Testing.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Put then name of your main app's target here. | |
| target 'MainApp' do | |
| pod 'Realm' | |
| pod 'NSDate+Calendar' | |
| pod 'Realm+JSON' | |
| # and any other dependencies | |
| end | |
| # Put the name of the Unit Testing Target here | |
| target 'MainAppTests' do | |
| pod 'Realm/Headers' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment