Sha256: f769e0339788d3ee137b2de032ccb32bff1bb27134c7a28f044a49479e2b1d11

Contents?: true

Size: 1.62 KB

Versions: 8

Compression:

Stored size: 1.62 KB

Contents

/*
 * sample unit testing for sample templates and implementations
 */
describe('uiTemplate', function () {

  // declare these up here to be global to all tests
  var $rootScope, $compile;

  beforeEach(module('ui.directives'));
  beforeEach(module('ui.filters'));

  // inject in angular constructs. Injector knows about leading/trailing underscores and does the right thing
  // otherwise, you would need to inject these into each test
  beforeEach(inject(function (_$rootScope_, _$compile_) {
    $rootScope = _$rootScope_;
    $compile = _$compile_;
  }));

  // reset the ui.config after each test
  afterEach(function () {
    angular.module('ui.config').value('ui.config', {});
  });

  // optional grouping of tests
  describe('filter', function () {

    // we're doing filter tests so globally define here for this subset of tests
    var $filter;
    beforeEach(inject(function (_$filter_) {
      $filter = _$filter_;
    }));

    // very simple boilerplate setup of test for a custom filter
    var tmpl;
    beforeEach(function () {
      tmpl = $filter('filterTmpl');
    });

    it('should exist when provided', function () {
      expect(tmpl).toBeDefined();
    });

    it('should return exactly what interesting thing the filter is doing to input', function () {
      expect(tmpl('text')).toEqual('text');
    });

  });

  // optional grouping of tests
  describe('directive', function () {
    var element;
    it('should create an element if using element-style', function () {
      element = $compile('<ui-directive-tmpl ng-model="a"></ui-directive-tmpl>')($rootScope);
      expect(element).toBeDefined();
    });
  });

});

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
active_record_survey_api-0.0.19 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.18 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.17 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.14 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.12 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.11 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.7 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js
active_record_survey_api-0.0.6 spec/test_app/vendor/assets/bower_components/angular-ui/templates/test/templateSpec.js