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

8 lines
166 B
Plaintext
Raw Normal View History

2015-08-11 05:11:27 +08:00
import Invite from 'discourse/models/invite';
module("model:invite");
2013-10-30 01:01:42 +08:00
test("create", function() {
2015-08-11 05:11:27 +08:00
ok(Invite.create(), "it can be created without arguments");
2014-07-31 06:56:01 +08:00
});