Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. describe(@"Team", ^{
  2. context(@"when newly created", ^{
  3. it(@"should have a name", ^{
  4. id team = [Team team];
  5. [[team.name should] equal:@"Black Hawks"];
  6. });
  7.  
  8. it(@"should have 11 players", ^{
  9. id team = [Team team];
  10. [[[team should] have:11] players];
  11. });
  12. });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement