Skip to content

Instantly share code, notes, and snippets.

@boo1ean
Created February 2, 2014 00:07
Show Gist options
  • Select an option

  • Save boo1ean/8761069 to your computer and use it in GitHub Desktop.

Select an option

Save boo1ean/8761069 to your computer and use it in GitHub Desktop.
var casual = require('casual'),
service = require('../real-service');
descibe('Some sort of service', function() {
it('Should not fail', function() {
var string = casual.string;
var expected = string + 'A';
var result = service.appendLetterAtoEndOfString(string);
result.should.be.exactly(expected);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment