mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-01 06:20:29 +01:00
13 lines
279 B
JavaScript
13 lines
279 B
JavaScript
'use strict';
|
|
|
|
/* jasmine specs for services go here */
|
|
|
|
describe('service', function() {
|
|
beforeEach(module('app'));
|
|
|
|
describe('version', function() {
|
|
it('should return current version', inject(function(version) {
|
|
expect(version).toEqual('0.1');
|
|
}));
|
|
});
|
|
});
|