rename #setup to #create

This commit is contained in:
Matias Alejo Garcia 2014-08-29 13:20:47 -03:00
commit b8b40f21f6
5 changed files with 9 additions and 9 deletions

View file

@ -65,11 +65,11 @@ describe("Unit: Controllers", function() {
});
});
describe('Setup Controller', function() {
var setupCtrl;
describe('Create Controller', function() {
var c;
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
setupCtrl = $controller('SetupController', {
c = $controller('CreateController', {
$scope: scope,
});
}));