Dashboard ReOrg - Remove unused dashboard.module.js

This patch removes dashboard.module.js because it is no longer used.

Change-Id: I8568b998573de7c2ff197bdc7e4bb9a8cf6aa784
Partial-Bug: 1478717
This commit is contained in:
Tyr Johanson 2015-08-05 11:43:46 -06:00
parent d0182f2493
commit ba582536ec
7 changed files with 2 additions and 42 deletions

View File

@ -49,7 +49,6 @@
beforeEach(module('horizon.framework.widgets.toast'));
beforeEach(module('horizon.app.core.openstack-service-api'));
beforeEach(module('horizon.dashboard'));
beforeEach(module('horizon.dashboard.identity'));
beforeEach(module('horizon.dashboard.identity.users'));
beforeEach(inject(function($injector) {

View File

@ -25,7 +25,6 @@
describe('horizon.dashboard.project.images.basePath constant', function () {
var imagesBasePath, staticUrl;
beforeEach(module('horizon.dashboard'));
beforeEach(module('horizon.dashboard.project'));
beforeEach(module('horizon.dashboard.project.images'));
beforeEach(inject(function ($injector) {

View File

@ -25,7 +25,6 @@
describe('horizon.dashboard.project.basePath constant', function () {
var projectBasePath, staticUrl;
beforeEach(module('horizon.dashboard'));
beforeEach(module('horizon.dashboard.project'));
beforeEach(inject(function ($injector) {
projectBasePath = $injector.get('horizon.dashboard.project.basePath');

View File

@ -27,13 +27,9 @@ ADD_ANGULAR_MODULES = [
AUTO_DISCOVER_STATIC_FILES = True
ADD_JS_FILES = [
'dashboard/dashboard.module.js',
]
ADD_JS_FILES = []
ADD_JS_SPEC_FILES = [
'dashboard/dashboard.module.spec.js',
]
ADD_JS_SPEC_FILES = []
ADD_SCSS_FILES = [
'dashboard/project/project.scss'

View File

@ -36,7 +36,6 @@
'horizon.app.core',
'horizon.app.tech-debt',
'horizon.auth',
'horizon.dashboard',
'horizon.framework'
];

View File

@ -1,7 +0,0 @@
(function () {
'use strict';
angular
.module('horizon.dashboard', []);
})();

View File

@ -1,25 +0,0 @@
/*
* (c) Copyright 2015 Hewlett-Packard Development Company, L.P.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
(function () {
'use strict';
describe('horizon.dashboard', function () {
it('should be defined', function () {
expect(angular.module('horizon.dashboard')).toBeDefined();
});
});
})();