it('allows new inline behavior (basic)', function () {
    const tpl = hbs.compile('{{if a "yes"}}');

    expect(tpl({a: true})).to.equal('yes');
    expect(tpl({a: false})).to.equal('');