From c0a34149ca3d1389ebfe154aab274ee22a402595 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Tue, 2 Dec 2014 15:25:23 -0800 Subject: [PATCH] [Scrolling] Add empty tests Add empty tests for scripts associated with the scrolling list view. WTD-534. --- .../features/scrolling/test/DomainColumnSpec.js | 14 ++++++++++++++ platform/features/scrolling/test/NameColumnSpec.js | 14 ++++++++++++++ .../features/scrolling/test/RangeColumnSpec.js | 14 ++++++++++++++ .../scrolling/test/ScrollingListControllerSpec.js | 14 ++++++++++++++ platform/features/scrolling/test/suite.json | 6 ++++++ 5 files changed, 62 insertions(+) create mode 100644 platform/features/scrolling/test/DomainColumnSpec.js create mode 100644 platform/features/scrolling/test/NameColumnSpec.js create mode 100644 platform/features/scrolling/test/RangeColumnSpec.js create mode 100644 platform/features/scrolling/test/ScrollingListControllerSpec.js create mode 100644 platform/features/scrolling/test/suite.json diff --git a/platform/features/scrolling/test/DomainColumnSpec.js b/platform/features/scrolling/test/DomainColumnSpec.js new file mode 100644 index 0000000000..d2f1629c55 --- /dev/null +++ b/platform/features/scrolling/test/DomainColumnSpec.js @@ -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 () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/NameColumnSpec.js b/platform/features/scrolling/test/NameColumnSpec.js new file mode 100644 index 0000000000..5763bd6021 --- /dev/null +++ b/platform/features/scrolling/test/NameColumnSpec.js @@ -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 () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/RangeColumnSpec.js b/platform/features/scrolling/test/RangeColumnSpec.js new file mode 100644 index 0000000000..39983bc153 --- /dev/null +++ b/platform/features/scrolling/test/RangeColumnSpec.js @@ -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 () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/ScrollingListControllerSpec.js b/platform/features/scrolling/test/ScrollingListControllerSpec.js new file mode 100644 index 0000000000..25922d442a --- /dev/null +++ b/platform/features/scrolling/test/ScrollingListControllerSpec.js @@ -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 () { + }); + } +); \ No newline at end of file diff --git a/platform/features/scrolling/test/suite.json b/platform/features/scrolling/test/suite.json new file mode 100644 index 0000000000..b62eaf30b6 --- /dev/null +++ b/platform/features/scrolling/test/suite.json @@ -0,0 +1,6 @@ +[ + "DomainColumn", + "NameColumn", + "RangeColumn", + "ScrollingListController" +] \ No newline at end of file