it('compares greater than', function () {
    const tpl = hbs.compile(testString('>'));

    expect(tpl({ a: 1, b: 2 })).to.equal('no');
    expect(tpl({ a: 2, b: 1 })).to.equal('yes');