heat-dashboard/heat_dashboard/static/dashboard/project/heat_dashboard/template_generator/js/components/template-generator.module.s...

43 lines
1.5 KiB
JavaScript

(function () {
'use strict';
describe('horizon.dashboard.project.heat_dashboard.template_generator module', function () {
it('should be defined', function () {
expect(angular.module('horizon.dashboard.project.heat_dashboard.template_generator')).toBeDefined();
});
});
describe('horizon.dashboard.project.heat_dashboard.template_generator.basePath', function () {
beforeEach(module('horizon.dashboard.project.heat_dashboard.template_generator'));
it('should be defined and set correctly', inject([
'horizon.dashboard.project.heat_dashboard.template_generator.basePath', '$window',
function (basePath, $window) {
expect(basePath).toBeDefined();
expect(basePath).toBe($window.STATIC_URL + 'dashboard/project/heat_dashboard/template_generator/');
}])
);
});
describe('horizon.dashboard.project.heat_dashboard.template_generator $locationProvider config', function () {
var $locationProvider;
beforeEach(function () {
angular.module('locationProviderConfig', [])
.config(function(_$locationProvider_) {
$locationProvider= _$locationProvider_;
spyOn($locationProvider, 'html5Mode');
});
module('locationProviderConfig');
module('horizon.dashboard.project.heat_dashboard.template_generator');
inject();
});
it('should set html5 mode', function() {
expect($locationProvider.html5Mode)
.toHaveBeenCalledWith({ enabled: true, requireBase: false });
});
});
})();