From f3728c09b2f5dc913913de24280aa95244ebb2c4 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 23 Jul 2013 10:41:54 +0200 Subject: [PATCH] chore(repo): removed accidentally committed files --- app/scripts/controllers/weluse.js | 10 ---------- test/spec/controllers/weluse.js | 22 ---------------------- 2 files changed, 32 deletions(-) delete mode 100644 app/scripts/controllers/weluse.js delete mode 100644 test/spec/controllers/weluse.js 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); - }); -});