]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/test/unit/egStrings.js
LP#1350042 Browser client templates/scripts (phase 1)
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / test / unit / egStrings.js
1 'use strict';
2
3 describe('egStrings', function(){
4     beforeEach(module('egCoreMod'));
5
6     it('should interpolate values', inject(function(egStrings) {
7
8         egStrings.FOO = 'Hello, {{planet}}';
9
10         expect(egStrings.$replace(egStrings.FOO, {planet : 'Earth'}))
11        .toBe('Hello, Earth');
12     }));
13
14 });