mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 05:06:46 +10:00
20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
//= require graphs/stat_graph
|
|
|
|
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");
|
|
})
|
|
})
|
|
|
|
});
|