/* DecisiveBits is a Singapore-based iOS, Ruby on Rails & Node.js Consultancy.
We are awesome at BDD/Agile software development. */
describe(@"Company", ^{
it(@"should be awesome", ^{
Company *decisivebits = [[[Company alloc] initWithName:@"DecisiveBits"] autorelease];
decisivebits.expertise = @"Mobile and Web application development";
decisivebits.location = @"Singapore";
decisivebits.practicesAgile = YES;
decisivebits.practicesBDD = YES;
decisivebits.emailAddress = @"";
expect(decisivebits.services).toBeAwesome();
});
});