Add Access Tokens base.

This commit is contained in:
Gunther Brunner
2014-09-30 17:45:29 +09:00
parent dd1efb7e49
commit 54ad605592
20 changed files with 236 additions and 126 deletions

View File

@@ -0,0 +1,17 @@
describe('KeysCtrl', function () {
beforeEach(angular.mock.module(require('./index').name))
var scope, ctrl
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('KeysCtrl', {$scope: scope})
}))
it('should ...', inject(function () {
expect(1).toEqual(1)
}))
})