Skip to content

Instantly share code, notes, and snippets.

@juniovitorino
Created January 30, 2013 21:12
Show Gist options
  • Save juniovitorino/4677039 to your computer and use it in GitHub Desktop.
Save juniovitorino/4677039 to your computer and use it in GitHub Desktop.
Kiwi Test sample
#import "Kiwi.h"
#import "User.h"
SPEC_BEGIN(User)
describe(@"User", ^{
context(@"User creation", ^{
it(@"it should have a name", ^{
User *user = [[User alloc] init];
[user setName: @"Junio Vitorino"];
[[user.name should] equal:theValue(@"Junio Vitorino")];
});
});
});
SPEC_END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment