123456789101112131415161718192021222324 |
- 'use strict';
- describe('Controller: MainCtrl', function () {
-
- beforeEach(module('landingPageApp'));
- var MainCtrl,
- scope;
-
- beforeEach(inject(function ($controller, $rootScope) {
- scope = $rootScope.$new();
- MainCtrl = $controller('MainCtrl', {
- $scope: scope
-
- });
- }));
- it('should attach a list of awesomeThings to the scope', function () {
- expect(MainCtrl.awesomeThings.length).toBe(3);
- });
- });
|