Remove unused, boilerplate test file
authorTim Otten <totten@civicrm.org>
Mon, 16 Mar 2015 20:37:19 +0000 (13:37 -0700)
committerTim Otten <totten@civicrm.org>
Mon, 16 Mar 2015 20:37:19 +0000 (13:37 -0700)
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 [deleted file]

diff --git a/tests/mailing_test/controllerTest.js b/tests/mailing_test/controllerTest.js
deleted file mode 100644 (file)
index e37529a..0000000
+++ /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);
-
-    });
-  });
-});