Created
January 26, 2009 20:18
-
-
Save jm/52952 to your computer and use it in GitHub Desktop.
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
// Objects | |
[thing shouldEqual:thing]; | |
// Primitive values | |
[expect(YES) shouldEqual:YES]; | |
// Working on more matchers... | |
[expect([@"hello" isEqual:@"hello"]) shouldBeTrue]; | |
// I think I might also add these methods so it reads better... | |
[expect(YES) toEqual:YES]; | |
[expect(YES) toBeTrue]; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment