You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by ma...@apache.org on 2014/01/15 22:37:36 UTC

[13/50] [abbrv] Removing angular-seed dir.

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a20de364/angular-seed-master/test/unit/controllersSpec.js
----------------------------------------------------------------------
diff --git a/angular-seed-master/test/unit/controllersSpec.js b/angular-seed-master/test/unit/controllersSpec.js
deleted file mode 100644
index 23f6b09..0000000
--- a/angular-seed-master/test/unit/controllersSpec.js
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict';
-
-/* jasmine specs for controllers go here */
-
-describe('controllers', function(){
-  beforeEach(module('myApp.controllers'));
-
-
-  it('should ....', inject(function() {
-    //spec body
-  }));
-
-  it('should ....', inject(function() {
-    //spec body
-  }));
-});

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a20de364/angular-seed-master/test/unit/directivesSpec.js
----------------------------------------------------------------------
diff --git a/angular-seed-master/test/unit/directivesSpec.js b/angular-seed-master/test/unit/directivesSpec.js
deleted file mode 100644
index 6061842..0000000
--- a/angular-seed-master/test/unit/directivesSpec.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict';
-
-/* jasmine specs for directives go here */
-
-describe('directives', function() {
-  beforeEach(module('myApp.directives'));
-
-  describe('app-version', function() {
-    it('should print current version', function() {
-      module(function($provide) {
-        $provide.value('version', 'TEST_VER');
-      });
-      inject(function($compile, $rootScope) {
-        var element = $compile('<span app-version></span>')($rootScope);
-        expect(element.text()).toEqual('TEST_VER');
-      });
-    });
-  });
-});

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a20de364/angular-seed-master/test/unit/filtersSpec.js
----------------------------------------------------------------------
diff --git a/angular-seed-master/test/unit/filtersSpec.js b/angular-seed-master/test/unit/filtersSpec.js
deleted file mode 100644
index 19af329..0000000
--- a/angular-seed-master/test/unit/filtersSpec.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict';
-
-/* jasmine specs for filters go here */
-
-describe('filter', function() {
-  beforeEach(module('myApp.filters'));
-
-
-  describe('interpolate', function() {
-    beforeEach(module(function($provide) {
-      $provide.value('version', 'TEST_VER');
-    }));
-
-
-    it('should replace VERSION', inject(function(interpolateFilter) {
-      expect(interpolateFilter('before %VERSION% after')).toEqual('before TEST_VER after');
-    }));
-  });
-});

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a20de364/angular-seed-master/test/unit/servicesSpec.js
----------------------------------------------------------------------
diff --git a/angular-seed-master/test/unit/servicesSpec.js b/angular-seed-master/test/unit/servicesSpec.js
deleted file mode 100644
index 3864c8d..0000000
--- a/angular-seed-master/test/unit/servicesSpec.js
+++ /dev/null
@@ -1,14 +0,0 @@
-'use strict';
-
-/* jasmine specs for services go here */
-
-describe('service', function() {
-  beforeEach(module('myApp.services'));
-
-
-  describe('version', function() {
-    it('should return current version', inject(function(version) {
-      expect(version).toEqual('0.1');
-    }));
-  });
-});

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/a20de364/angular-seed-master/update-angular.sh
----------------------------------------------------------------------
diff --git a/angular-seed-master/update-angular.sh b/angular-seed-master/update-angular.sh
deleted file mode 100755
index 99e8576..0000000
--- a/angular-seed-master/update-angular.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /bin/sh
-if [ -n "$1" ]; then
-  mkdir tmp
-  curl https://raw.github.com/angular/code.angularjs.org/master/$1/angular-$1.zip -o tmp/angular.zip
-  rm -fr app/lib/angular
-  unzip tmp/angular.zip -d app/lib
-  mv app/lib/angular-$1 app/lib/angular
-  rm -fr app/lib/angular/docs
-  mv app/lib/angular/angular-mocks.js test/lib/angular
-  mv app/lib/angular/angular-scenario.js test/lib/angular
-  cp app/lib/angular/version.txt test/lib/angular
-
-else
-  echo "Usage: update-angular <version>"
-fi