2018-06-15 23:03:24 +08:00
|
|
|
import Group from "discourse/models/group";
|
2017-05-05 14:34:47 +08:00
|
|
|
|
2017-06-15 01:57:58 +08:00
|
|
|
QUnit.module("model:group");
|
2017-05-05 14:34:47 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
QUnit.test("displayName", assert => {
|
|
|
|
const group = Group.create({ name: "test", display_name: "donkey" });
|
2017-05-05 14:34:47 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.equal(
|
|
|
|
group.get("displayName"),
|
|
|
|
"donkey",
|
|
|
|
"it should return the display name"
|
|
|
|
);
|
2017-05-05 14:34:47 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
group.set("display_name", null);
|
2017-05-05 14:34:47 +08:00
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
assert.equal(
|
|
|
|
group.get("displayName"),
|
|
|
|
"test",
|
|
|
|
"it should return the group's name"
|
|
|
|
);
|
2017-07-27 16:05:08 +08:00
|
|
|
});
|