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