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

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