forked from loafle/openapi-generator-original
53 lines
879 B
Matlab
53 lines
879 B
Matlab
//
|
|
// SwaggerClientTests.m
|
|
// SwaggerClientTests
|
|
//
|
|
// Created by geekerzp on 06/26/2015.
|
|
// Copyright (c) 2015 geekerzp. All rights reserved.
|
|
//
|
|
|
|
// https://github.com/Specta/Specta
|
|
|
|
/**
|
|
* show cases for 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
|
|
*/
|