SmartIT_Extensions/BMC/smart-it-full/test/app/ticket/data-loss-prevention-profil...

25 lines
565 B
JavaScript

describe('dataLossPreventionProfileController', function () {
'use strict';
var ctrl,
$controller,
$rootScope,
$scope;
beforeEach(module('myitsmApp'));
beforeEach(inject(function (_$controller_, _$rootScope_) {
$controller = _$controller_;
$rootScope = _$rootScope_;
$scope = $rootScope.$new();
ctrl = $controller('dataLossPreventionProfileController', {
$scope: $scope
});
}));
it('should exist', function () {
expect(ctrl).toBeDefined();
});
});