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