[Scrolling] Add empty tests

Add empty tests for scripts associated with the scrolling
list view. WTD-534.
This commit is contained in:
Victor Woeltjen 2014-12-02 15:25:23 -08:00
parent 4905e68ad2
commit c0a34149ca
5 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/DomainColumn"],
function (DomainColumn) {
"use strict";
describe("A domain column", function () {
});
}
);

View File

@ -0,0 +1,14 @@
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/NameColumn"],
function (NameColumn) {
"use strict";
describe("A name column", function () {
});
}
);

View File

@ -0,0 +1,14 @@
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/RangeColumn"],
function (RangeColumn) {
"use strict";
describe("A range column", function () {
});
}
);

View File

@ -0,0 +1,14 @@
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine*/
/**
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
*/
define(
["../src/ScrollingListController"],
function (ScrollingListController) {
"use strict";
describe("The scrolling list controller", function () {
});
}
);

View File

@ -0,0 +1,6 @@
[
"DomainColumn",
"NameColumn",
"RangeColumn",
"ScrollingListController"
]