Sha256: 032378fe6b71444f40a1fa483c4d5a90bbc306d07084b6fbf06a076ee81a4d24
Contents?: true
Size: 722 Bytes
Versions: 17
Compression:
Stored size: 722 Bytes
Contents
// https://github.com/kiwi-bdd/Kiwi SPEC_BEGIN(InitialTests) describe(@"My initial tests", ^{ context(@"will fail", ^{ it(@"can do maths", ^{ [[@1 should] equal:@2]; }); it(@"can read", ^{ [[@"number" should] equal:@"string"]; }); it(@"will wait and fail", ^{ NSObject *object = [[NSObject alloc] init]; [[expectFutureValue(object) shouldEventually] receive:@selector(autoContentAccessingProxy)]; }); }); context(@"will pass", ^{ it(@"can do maths", ^{ [[@1 should] beLessThan:@23]; }); it(@"can read", ^{ [[@"team" shouldNot] containString:@"I"]; }); }); }); SPEC_END
Version data entries
17 entries across 17 versions & 2 rubygems