[Plot] Add skeleton specs for stacked plots

Add skeleton specs for classes introduced to support
stacked plot mode, WTD-625.
This commit is contained in:
Victor Woeltjen
2014-12-12 09:44:05 -08:00
parent 06036ce8b3
commit a677ed258e
6 changed files with 76 additions and 1 deletions

View File

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