2014-12-12 17:44:05 +00:00
|
|
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../../src/modes/PlotStackMode"],
|
|
|
|
function (PlotStackMode) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
describe("Stacked plot mode", function () {
|
2014-12-12 17:49:44 +00:00
|
|
|
var testDrawingObject;
|
|
|
|
|
|
|
|
it("draws all lines to one subplot", function () {
|
|
|
|
|
|
|
|
// Should have put some lines in the drawing scope,
|
|
|
|
// which the template should pass along to the renderer
|
|
|
|
//expect(testDrawingObject.lines).toBeDefined();
|
|
|
|
});
|
|
|
|
|
2014-12-12 17:44:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|