[Layout] Add empty specs

Add empty specs for new scripts introduced during the
transition of Layout object type and view, WTD-535.
This commit is contained in:
Victor Woeltjen 2014-12-05 15:39:07 -08:00
parent 2ef244edce
commit f418491cc4
5 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../src/EditRepresenter"],
function (EditRepresenter) {
"use strict";
describe("The Edit mode representer", function () {
});
}
);

View File

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

View File

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

View File

@ -0,0 +1,11 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../src/LayoutDrag"],
function (LayoutDrag) {
"use strict";
describe("A Layout drag handler", function () {
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
["../../src/gestures/GestureRepresenter"],
function (GestureRepresenter) {
"use strict";
describe("A gesture representer", function () {
});
}
);