Ghost/core/test/utils/fixtures/app/badrequire.js

15 lines
242 B
JavaScript
Raw Normal View History

var lib = require('./badlib');
function BadApp(app) {
this.app = app;
}
BadApp.prototype.install = function () {
return lib.knex.dropTableIfExists('users');
};
BadApp.prototype.activate = function () {
};
module.exports = BadApp;