From 3633a49360da906d73b8feab9ebf3af112f4e560 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Mon, 16 Mar 2015 13:37:19 -0700 Subject: [PATCH] Remove unused, boilerplate test file This appears to be left from an abortive attempt at testing with Jasmine/Karma. The actual tests are in a different folder (tests/karma), and this test doesn't really do anything. --- tests/mailing_test/controllerTest.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 tests/mailing_test/controllerTest.js diff --git a/tests/mailing_test/controllerTest.js b/tests/mailing_test/controllerTest.js deleted file mode 100644 index e37529a21b..0000000000 --- a/tests/mailing_test/controllerTest.js +++ /dev/null @@ -1,18 +0,0 @@ -/* jasmine specs for controllers go here */ -describe('Mailing Controllers', function() { - - describe('Mailing Ctrl ', function(){ - var scope, ctrl; - - beforeEach(module('crmMailing')); - beforeEach(inject(function($rootScope, $controller) { - scope = $rootScope.$new(); - ctrl = $controller('mailingCtrl', {$scope: scope}); - })); - - it('should check if 5 groups are there', function() { - expect(scope.cool_api.length).toBe(3); - - }); - }); -}); -- 2.25.1