it('should returns the successor to str', () => {
    const template = Handlebars.compile('{{succ str}}');

    expect(template({str: 'a'})).toBe('b');
    expect(template({str: 'A'})).toBe('B');