mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
426 B
JavaScript
10 lines
426 B
JavaScript
moduleFor("controller:user-dropdown");
|
|
|
|
test("showAdminLinks", function() {
|
|
const currentUser = Ember.Object.create({ staff: true });
|
|
const controller = this.subject({ currentUser });
|
|
equal(controller.get("showAdminLinks"), true, "is true when current user is a staff member");
|
|
|
|
currentUser.set("staff", false);
|
|
equal(controller.get("showAdminLinks"), false, "is false when current user is not a staff member");
|
|
});
|