bricks-cli
Version:
Command line tool for developing ambitious ember.js apps
20 lines (15 loc) • 385 B
JavaScript
;
var UI = require('../../lib/ui');
var through = require('through');
module.exports = MockUI;
function MockUI() {
this.output = '';
UI.call(this, {
inputStream: through(),
outputStream: through(function(data) {
this.output += data;
}.bind(this))
});
}
MockUI.prototype = Object.create(UI.prototype);
MockUI.prototype.constructor = MockUI;