Moved ext to js

This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Max Lynch
2013-10-01 09:39:18 -05:00
gitea-unlock(16/)
parent 79d7600be4
commit 04bfa7c524
octicon-diff(16/tw-mr-1) 16 changed files with 0 additions and 0 deletions

15
js/ext/angular/test/ionicContent.unit.js Normal file
View File

@@ -0,0 +1,15 @@
describe('Ionic Content directive', function() {
var compile, element, scope;
beforeEach(module('ionic.ui.content'));
beforeEach(inject(function($compile, $rootScope) {
compile = $compile;
scope = $rootScope;
}));
it('Has content class', function() {
element = compile('<content></content>')(scope);
expect(element.hasClass('content')).toBe(true);
});
});