Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created July 25, 2019 13:29
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/617627d43f384e03f4a8a473a8f5e2ba to your computer and use it in GitHub Desktop.
Save jasongorman/617627d43f384e03f4a8a473a8f5e2ba to your computer and use it in GitHub Desktop.
class StubPayments {
constructor(accepted) {
this.accepted = accepted;
}
process(amount, creditcard){
return this.accepted;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment