[Indicators] Add skeleton specs

Add skeleton specs for the bottom bar controller (introduced
to handle display of indicators introduced as extensions)
and the Couch indicator (introduced to exercise the above,
and to report connection status relative to the Couch
database.) WTD-608.
This commit is contained in:
Victor Woeltjen 2014-12-16 13:47:25 -08:00
parent ff8572f055
commit 8ce693af0a
4 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,13 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/BottomBarController"],
function (BottomBarController) {
"use strict";
describe("The bottom bar controller", function () {
var testIndicators,
controller;
});
}
);

View File

@ -1,5 +1,6 @@
[
"ActionGroupController",
"BottomBarController",
"ClickAwayController",
"ContextMenuController",
"MCTContainer",

View File

@ -0,0 +1,12 @@
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
define(
["../src/CouchIndicator"],
function (CouchIndicator) {
"use strict";
describe("The CouchDB status indicator", function () {
});
}
);

View File

@ -1,4 +1,5 @@
[
"CouchDocument",
"CouchIndicator",
"CouchPersistenceProvider"
]