[Forms] Add skeleton specs

Add skeleton specs for scripts from the Forms
component. WTD-530.
This commit is contained in:
Victor Woeltjen 2014-11-28 14:40:35 -08:00
parent b60a5ae7c1
commit 29c5a7aaba
4 changed files with 41 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,12 @@
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../../src/controllers/DateTimeController"],
function (DateTimeController) {
"use strict";
describe("The date-time directive", function () {
});
}
);

View File

@ -0,0 +1,5 @@
[
"MCTControl",
"MCTForm",
"controllers/DateTimeController"
]