Skip to content

Instantly share code, notes, and snippets.

@gajus
Created September 24, 2014 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gajus/87acb66a7823c2d71c05 to your computer and use it in GitHub Desktop.
Save gajus/87acb66a7823c2d71c05 to your computer and use it in GitHub Desktop.
describe('Product', function () {
it('must calculate its gross price by adding the VAT', function () {
var product = Product.create('A', 10);
expect(product.grossPrice()).toEqual(12);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment