2017-09-11 14:53:47 +02:00

49 lines
860 B
Objective-C

//
// PNTwitterCoverTests.m
// PNTwitterCoverTests
//
// Created by giuseppenucifora on 09/11/2017.
// Copyright (c) 2017 giuseppenucifora. All rights reserved.
//
// https://github.com/Specta/Specta
SpecBegin(InitialSpecs)
describe(@"these will fail", ^{
it(@"can do maths", ^{
expect(1).to.equal(2);
});
it(@"can read", ^{
expect(@"number").to.equal(@"string");
});
it(@"will wait for 10 seconds and fail", ^{
waitUntil(^(DoneCallback done) {
});
});
});
describe(@"these will pass", ^{
it(@"can do maths", ^{
expect(1).beLessThan(23);
});
it(@"can read", ^{
expect(@"team").toNot.contain(@"I");
});
it(@"will wait and succeed", ^{
waitUntil(^(DoneCallback done) {
done();
});
});
});
SpecEnd