diff --git a/app/scripts/controllers/weluse.js b/app/scripts/controllers/weluse.js deleted file mode 100644 index 8791c06b1..000000000 --- a/app/scripts/controllers/weluse.js +++ /dev/null @@ -1,10 +0,0 @@ -'use strict'; - -angular.module('generatorAngularApp') - .controller('WeluseCtrl', function ($scope) { - $scope.awesomeThings = [ - 'HTML5 Boilerplate', - 'AngularJS', - 'Karma' - ]; - }); diff --git a/test/spec/controllers/weluse.js b/test/spec/controllers/weluse.js deleted file mode 100644 index 8394d6cfb..000000000 --- a/test/spec/controllers/weluse.js +++ /dev/null @@ -1,22 +0,0 @@ -'use strict'; - -describe('Controller: WeluseCtrl', function () { - - // load the controller's module - beforeEach(module('generatorAngularApp')); - - var WeluseCtrl, - scope; - - // Initialize the controller and a mock scope - beforeEach(inject(function ($controller, $rootScope) { - scope = $rootScope.$new(); - WeluseCtrl = $controller('WeluseCtrl', { - $scope: scope - }); - })); - - it('should attach a list of awesomeThings to the scope', function () { - expect(scope.awesomeThings.length).toBe(3); - }); -});