it('should NOT compile inner content by default', function() {
        var elm = compileDirective('default', {modal: {title: 'title<br>next', content: 'content<br>next</span>'}});
        angular.element(elm[0]).triggerHandler('click');
        expect(sandboxEl.find('.modal-title').html()).not.toBe('title<br>next');
        expect(sandboxEl.find('.modal-body').html()).not.toBe('content<br>next');