Skip to content

Instantly share code, notes, and snippets.

@danpalmer
Created March 22, 2013 14:06
Show Gist options
  • Save danpalmer/5221506 to your computer and use it in GitHub Desktop.
Save danpalmer/5221506 to your computer and use it in GitHub Desktop.
describe(@"MyClass", ^{
it(@"should do something", ^AsyncBlock {
MyClass *obj = [[MyClass alloc] init];
[obj doSomethingInBackground:^(NSArray *results, NSError *error) {
expect([results count]).toNot.equal(0);
done();
}];
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment