Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created July 25, 2019 13:46
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 jasongorman/f44e40bd085390e2329f2ae050adaf1d to your computer and use it in GitHub Desktop.
Save jasongorman/f44e40bd085390e2329f2ae050adaf1d to your computer and use it in GitHub Desktop.
describe("out of stock", function () {
it("should throw an out of stock error", function() {
const cd = new CD(price=9.99, stock=0);
const payments = new StubPayments(accepted=true);
const creditCard = {
number: "1234234545675768",
expiry: "10/22",
cv: "855"
};
assert.throws(() => {cd.buy(payments, creditCard);}, OutOfStockError);
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment