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

7 lines
183 B
Plaintext
Raw Normal View History

2015-08-10 16:11:27 -05:00
import Invite from 'discourse/models/invite';
2017-06-14 12:57:58 -05:00
QUnit.module("model:invite");
2013-10-29 12:01:42 -05:00
2017-06-14 12:57:58 -05:00
QUnit.test("create", assert => {
assert.ok(Invite.create(), "it can be created without arguments");
});