[Fixed Position] Add empty specs

Add empty specs for classes introduced in support of
Add menu options for fixed position view, WTD-880.
This commit is contained in:
Victor Woeltjen 2015-02-20 15:29:37 -08:00
parent f9043fdb7d
commit 668a1e4534
3 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,11 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
['../../src/elements/ElementFactory'],
function (ElementFactory) {
"use strict";
describe("The fixed position element factory", function () {
});
}
);

View File

@ -0,0 +1,11 @@
/*global define,describe,it,expect,beforeEach,jasmine*/
define(
['../../src/elements/LineProxy'],
function (LineProxy) {
"use strict";
describe("A fixed position line proxy", function () {
});
}
);

View File

@ -5,7 +5,9 @@
"LayoutDrag",
"LayoutSelection",
"elements/AccessorMutator",
"elements/ElementFactory",
"elements/ElementProxies",
"elements/ElementProxy",
"elements/LineProxy",
"elements/TelemetryProxy"
]