Skip to content

Instantly share code, notes, and snippets.

@benvium
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save benvium/49a99c87b35447ad7cf3 to your computer and use it in GitHub Desktop.

Select an option

Save benvium/49a99c87b35447ad7cf3 to your computer and use it in GitHub Desktop.
Podfile demonstrating how to set up Realm for XCTest Unit Testing.
# 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