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

Version Path
ykioscmd-0.6.7 lib/yk_command/project/test_examples/kiwi.m
ykioscmd-0.6.6 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.6.5 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.6.4 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.6.2 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.6.1 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.6.0 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.91 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.9 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.8 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.7 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.6 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.5 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.4 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.3 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.2 lib/yk_command/project/test_examples/kiwi.m
yk_command-0.5.1 lib/yk_command/project/test_examples/kiwi.m