Skip to content

Instantly share code, notes, and snippets.

@peterheard01
Last active March 18, 2016 07:57
Show Gist options
  • Save peterheard01/8e4639e23e9bfdc83e28 to your computer and use it in GitHub Desktop.
Save peterheard01/8e4639e23e9bfdc83e28 to your computer and use it in GitHub Desktop.
Test Double : Dummy Object (Javascript)
//the real world implementation
function Alerter(){
this.alert = (msg){
window.alert(msg);
};
}
var Alerter = new Alerter();
//the Alerter is injected into here
angular.module('app').controller(function(Alerter){
Alerter.alert('hello world');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment