2013-05-09 01:00:56 -04:00
|
|
|
describe("StatGraph", function () {
|
|
|
|
|
|
|
|
describe("#get_log", function () {
|
|
|
|
it("returns log", function () {
|
|
|
|
StatGraph.log = "test";
|
|
|
|
expect(StatGraph.get_log()).toBe("test");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("#set_log", function () {
|
|
|
|
it("sets the log", function () {
|
|
|
|
StatGraph.set_log("test");
|
|
|
|
expect(StatGraph.log).toBe("test");
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2014-06-21 05:18:57 -04:00
|
|
|
});
|