main
 1//
 2//  SampleSpec.m
 3//  MovieLibrary
 4//
 5//  Created by mo khan on 2013-05-14.
 6//  Copyright (c) 2013 mo khan. All rights reserved.
 7//
 8#import "Kiwi.h"
 9
10SPEC_BEGIN(MathSpec)
11
12describe(@"Math", ^{
13    it(@"is pretty cool", ^{
14      NSUInteger a = 16;
15      NSUInteger b = 26;
16      [[theValue(a+b) should] equal:theValue(42)];
17    });
18});
19
20SPEC_END