blob: 6c23d374be4913b0b3c851d7d9a0cf644d0d5bca [file] [log] [blame]
describe('ResourcesCtrl', function() {
beforeEach(angular.mock.module(require('./').name))
var scope, ctrl
beforeEach(inject(function($rootScope, $controller) {
scope = $rootScope.$new()
ctrl = $controller('ResourcesCtrl', {$scope: scope})
}))
it('should ...', inject(function() {
expect(1).toEqual(1)
}))
})