summaryrefslogtreecommitdiffstats
path: root/js/vendor/angular-ui/templates/test/templateSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/angular-ui/templates/test/templateSpec.js')
-rw-r--r--js/vendor/angular-ui/templates/test/templateSpec.js58
1 files changed, 0 insertions, 58 deletions
diff --git a/js/vendor/angular-ui/templates/test/templateSpec.js b/js/vendor/angular-ui/templates/test/templateSpec.js
deleted file mode 100644
index 6eff729e1..000000000
--- a/js/vendor/angular-ui/templates/test/templateSpec.js
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * 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();
- });
- });
-
-});