Skip to content

Instantly share code, notes, and snippets.

@garriguv
Last active January 11, 2016 08:51
Show Gist options
  • Save garriguv/ede7618af6a2dcd57901 to your computer and use it in GitHub Desktop.
Save garriguv/ede7618af6a2dcd57901 to your computer and use it in GitHub Desktop.
Specta
#import <Specta/Specta.h>
#import <Specta/Expecta.h>
#import "MyClass.h"
@interface MyClass (Spec)
@end
SpecBegin(MyClass)
__block MyClass *subject;
before(^{
subject = [[MyClass alloc] init];
});
describe(@"", ^{
});
SpecEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment