mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-11 08:01:03 +01:00
14 lines
279 B
JavaScript
14 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');
|
||
|
}));
|
||
|
});
|
||
|
});
|