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

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