[Common UI] Add skeleton specs

Add skeleton specs for bundle platform/commonUI/general.
WTD-574.
This commit is contained in:
Victor Woeltjen 2014-11-24 13:39:52 -08:00
parent f6850ffc4f
commit b026e313be
7 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ActionGroupController"],
function (ActionGroupController) {
"use strict";
describe("The domain object provider", function () {
var mockScope,
controller;
beforeEach(function () {
mockScope = jasmine.createSpyObj("$scope", ["$watch"]);
controller = new ActionGroupController(mockScope);
});
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ClickAwayController"],
function (ClickAwayController) {
"use strict";
describe("The domain object provider", function () {
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ContextMenuController"],
function (ContextMenuController) {
"use strict";
describe("The domain object provider", function () {
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/MCTContainer"],
function (MCTContainer) {
"use strict";
describe("The mct-container directive", function () {
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/ToggleController"],
function (ToggleController) {
"use strict";
describe("The toggle controller", function () {
});
}
);

View File

@ -0,0 +1,12 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/TreeNodeController"],
function (TreeNodeController) {
"use strict";
describe("The tree node controller", function () {
});
}
);

View File

@ -0,0 +1,8 @@
[
"ActionGroupController",
"ClickAwayController",
"ContextMenuController",
"MCTContainer",
"ToggleController",
"TreeNodeController"
]