Merge pull request #1239 from matiu/bug/create

rename #setup to #create
This commit is contained in:
Manuel Aráoz 2014-09-01 11:25:49 -03:00
commit 21d7ea5411
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,
});
}));