Eric
Eric
Added an instance method to NSString that removes leading and trailing whitespace.
Before, both xcodebuild and running the built product always had an exit code of 0. Now, the exit code of the xcodebuild command is 65 for spec failures and 0...
The following code: ``` ObjectiveC it(@"matches arrays", NSArray* actual = [NSArray arrayWithObjects: @"first", nil]; NSArray* expected = [NSArray arrayWithObjects: @"frist", nil]; [expect(actual) toBeEqualTo: expected]; }), ``` gives the following error...
I have a project that I wanted to run the same suite of tests against both the Mac SDK and the iOS SDK. Doing "File -> New -> New Target"...