def test_name_vpc_id(self): self.assertEqual(snake_to_camel_case("vpc_id"), "VpcId")
def test_name_cidr_block(self): self.assertEqual(snake_to_camel_case("cidr_block"), "CidrBlock")
def test_name_http_response(self): # this tests short circut of answers. self.assertEqual( snake_to_camel_case("http_response", answers=self.answers), "HTTPResponse")
def test_name_vpc_id(self): self.assertEqual( snake_to_camel_case('vpc_id'), 'VpcId' )
def test_name_http_response(self): # this tests short circut of answers. self.assertEqual( snake_to_camel_case('http_response', answers=self.answers), 'HTTPResponse' )
def test_name_cidr_block(self): self.assertEqual( snake_to_camel_case('cidr_block'), 'CidrBlock' )
def test_name_vpc_id(self): self.assertEqual(snake_to_camel_case('vpc_id'), 'VpcId')
def test_name_cidr_block(self): self.assertEqual(snake_to_camel_case('cidr_block'), 'CidrBlock')