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

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