We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
33 lines
805 B
JavaScript
33 lines
805 B
JavaScript
import { test, module } from "qunit";
|
|
import User from "discourse/models/user";
|
|
|
|
module("model:topic-details");
|
|
|
|
import Topic from "discourse/models/topic";
|
|
|
|
var buildDetails = function (id) {
|
|
var topic = Topic.create({ id: id });
|
|
return topic.get("details");
|
|
};
|
|
|
|
test("defaults", (assert) => {
|
|
var details = buildDetails(1234);
|
|
assert.present(details, "the details are present by default");
|
|
assert.ok(!details.get("loaded"), "details are not loaded by default");
|
|
});
|
|
|
|
test("updateFromJson", (assert) => {
|
|
var details = buildDetails(1234);
|
|
|
|
details.updateFromJson({
|
|
allowed_users: [{ username: "eviltrout" }],
|
|
});
|
|
|
|
assert.equal(
|
|
details.get("allowed_users.length"),
|
|
1,
|
|
"it loaded the allowed users"
|
|
);
|
|
assert.containsInstance(details.get("allowed_users"), User);
|
|
});
|