'use strict';
describe('ngBindHtml', function() {
  beforeEach(module('ngSanitize'));
  it('should set html', inject(function($rootScope, $compile) {
    var element = $compile('
')($rootScope);
    $rootScope.html = 'hello
';
    $rootScope.$digest();
    expect(angular.lowercase(element.html())).toEqual('hello
');
  }));
  it('should reset html when value is null or undefined', inject(function($compile, $rootScope) {
    var element = $compile('')($rootScope);
    angular.forEach([null, undefined, ''], function(val) {
      $rootScope.html = 'some val';
      $rootScope.$digest();
      expect(angular.lowercase(element.html())).toEqual('some val');
      $rootScope.html = val;
      $rootScope.$digest();
      expect(angular.lowercase(element.html())).toEqual('');
    });
  }));
});