If trying to delete the current branch (i.e. HEAD points to that same branch), the operation fails.
343536373839404142434445
injector.configDatabase().put("user.email", "groldan@boundlessgeo.com"); } @Test public void NoBranchNameTest() { BranchDeleteOp testOp = new BranchDeleteOp(); testOp.setName(null); exception.expect(IllegalStateException.class); testOp.call(); }