it('must handle repeated variables', function () {
            var template = 'hello, {{hello}}, {{hello}}, {{hello1}}';
            assert.equal(utils.simpleTemplate(template, {hello: 'hola', hello1: 'ola'}), 'hello, hola, hola, ola');
        });