I recently updated to Xcode 7 beta 5. I tried adding a unit test to an earlier project, but I am getting the error message \"No such module [myModuleName]\" on the @te
@te
CocoaPods recommends adding inherit! :search_paths to your test target like so:
inherit! :search_paths
target 'App' do target 'AppTests' do inherit! :search_paths end end
Source: https://github.com/CocoaPods/CocoaPods/pull/8423#issue-244992565