discourse/test/javascripts/models/invite-test.js.es6

8 lines
184 B
Plaintext
Raw Normal View History

2018-06-15 23:03:24 +08:00
import Invite from "discourse/models/invite";
2015-08-11 05:11:27 +08:00
2017-06-15 01:57:58 +08:00
QUnit.module("model:invite");
2013-10-30 01:01:42 +08:00
2017-06-15 01:57:58 +08:00
QUnit.test("create", assert => {
assert.ok(Invite.create(), "it can be created without arguments");
2018-06-15 23:03:24 +08:00
});