Upgrade ember-qunit

This commit is contained in:
Robin Ward
2016-11-08 14:29:50 -05:00
parent 151597bf0f
commit 6a1c05a268
9 changed files with 341 additions and 75 deletions

View File

@ -4,21 +4,24 @@ import ApiKey from 'admin/models/api-key';
module("model:admin-user");
test('generate key', function() {
test('generate key', function(assert) {
assert.expect(2);
var adminUser = AdminUser.create({id: 333});
blank(adminUser.get('api_key'), 'it has no api key by default');
adminUser.generateApiKey().then(function() {
assert.ok(!adminUser.get('api_key'), 'it has no api key by default');
return adminUser.generateApiKey().then(function() {
present(adminUser.get('api_key'), 'it has an api_key now');
});
});
test('revoke key', function() {
test('revoke key', function(assert) {
assert.expect(2);
var apiKey = ApiKey.create({id: 1234, key: 'asdfasdf'}),
adminUser = AdminUser.create({id: 333, api_key: apiKey});
equal(adminUser.get('api_key'), apiKey, 'it has the api key in the beginning');
adminUser.revokeApiKey().then(function() {
assert.equal(adminUser.get('api_key'), apiKey, 'it has the api key in the beginning');
return adminUser.revokeApiKey().then(function() {
blank(adminUser.get('api_key'), 'it cleared the api_key');
});
});