discourse/test/javascripts/models/email-log-test.js.es6

7 lines
192 B
Plaintext
Raw Normal View History

import EmailLog from 'admin/models/email-log';
2017-06-15 01:57:58 +08:00
QUnit.module("Discourse.EmailLog");
2013-10-30 01:01:42 +08:00
2017-06-15 01:57:58 +08:00
QUnit.test("create", assert => {
assert.ok(EmailLog.create(), "it can be created without arguments");
});