Skip to content

Commit

Permalink
Add test command thing for the example
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Kregel committed Aug 1, 2018
1 parent 45318c0 commit b76950b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/Commands/Theory.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
const Command = require('../../src/Command');

module.exports = class Theory extends Command {
constructor() {
super();
this.signature = 'test-the-thing';
}

handle() {
console.log('This is a thing that is testable')
}
}

0 comments on commit b76950b

Please sign in to comment.