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

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