test '%' as a valid char for object name

This commit is contained in:
Yehuda Sadeh 2012-02-10 16:53:06 -08:00
parent d196c6829d
commit 54d98ff1e3

View file

@ -2584,7 +2584,7 @@ def test_bucket_create_naming_good_contains_hyphen():
@attr(operation='create and list objects with special names')
@attr(assertion='special names work')
def test_bucket_create_special_key_names():
key_names = [' ', '_', '_ ', '_ _', '__']
key_names = [' ', '%', '_', '_ ', '_ _', '__']
bucket = _create_keys(keys=key_names)
li = bucket.list()