Skip to content

Commit

Permalink
Adds pending tests for Viewer Controllers.
Browse files Browse the repository at this point in the history
	new file:   spec/services/identity/controllers/identity-viewer-controller-spec.js
	new file:   spec/services/identity/controllers/identity-viewers-list-controller-spec.js
  • Loading branch information
kixxauth committed Oct 27, 2016
1 parent 0177d0e commit 5d7dfea
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/* global describe, it */
/* eslint prefer-arrow-callback: 0 */
/* eslint-disable max-nested-callbacks */
'use strict';

// Reference identity-item-controller-spec.js and identity-channel-controller-spec.js

describe('Identity Viewer Controller', function () {
describe('GET', function () {
describe('as platform', function () {
it('needs to be tested');
});
describe('as admin', function () {
it('needs to be tested');
});
});

describe('PATCH', function () {
describe('as platform', function () {
it('needs to be tested');
});
describe('as admin', function () {
it('needs to be tested');
});
});

describe('DELETE', function () {
describe('as platform', function () {
it('needs to be tested');
});
describe('as admin', function () {
it('needs to be tested');
});
});
});
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* global describe, it */
/* eslint prefer-arrow-callback: 0 */
/* eslint-disable max-nested-callbacks */
'use strict';

// Reference identity-list-controller-spec.js and identity-channels-list-controller-spec.js

describe('Identity Viewers List Controller', function () {
describe('GET', function () {
describe('as platform', function () {
it('needs to be tested');
});
describe('as admin', function () {
it('needs to be tested');
});
});

describe('POST', function () {
describe('as platform', function () {
it('needs to be tested');
});
describe('as admin', function () {
it('needs to be tested');
});
});
});

0 comments on commit 5d7dfea

Please sign in to comment.