Alex Salom

Results 2 comments of Alex Salom

I have the same problem with a subclass of UIView. In the case of beKindOf: ``` obj-c expect(_viewController.introView).to.beKindOf([EAIntroView class]); // this fails expect(_viewController.introView).to.beKindOf([UIView class]); // this passes ``` In the...

You were right, using CocoaPods to manage my dependencies I was adding to the test target all dependencies from the main target, adding `:exclusive => true do` did the trick....