2020-11-09 03:30:15 +00:00
|
|
|
"use strict";
|
2015-01-13 10:18:13 +00:00
|
|
|
|
2020-11-09 03:30:15 +00:00
|
|
|
describe("myApp.version module", function () {
|
|
|
|
beforeEach(module("myApp.version"));
|
2015-01-13 10:18:13 +00:00
|
|
|
|
2020-11-09 03:30:15 +00:00
|
|
|
describe("version service", function () {
|
|
|
|
it("should return current version", inject(function (version) {
|
|
|
|
expect(version).toEqual("0.1");
|
2015-01-13 10:18:13 +00:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|