add unittest
This commit is contained in:
parent
93a404ec37
commit
07540a35fe
@ -1405,6 +1405,19 @@ def test_boto3_deleted_versionings_list():
|
|||||||
assert len(listed['Contents']) == 1
|
assert len(listed['Contents']) == 1
|
||||||
|
|
||||||
|
|
||||||
|
@mock_s3
|
||||||
|
def test_boto3_delete_versioned_bucket():
|
||||||
|
client = boto3.client('s3', region_name='us-east-1')
|
||||||
|
|
||||||
|
client.create_bucket(Bucket='blah')
|
||||||
|
client.put_bucket_versioning(Bucket='blah', VersioningConfiguration={'Status': 'Enabled'})
|
||||||
|
|
||||||
|
resp = client.put_object(Bucket='blah', Key='test1', Body=b'test1')
|
||||||
|
client.delete_object(Bucket='blah', Key='test1', VersionId=resp["VersionId"])
|
||||||
|
|
||||||
|
client.delete_bucket(Bucket='blah')
|
||||||
|
|
||||||
|
|
||||||
@mock_s3
|
@mock_s3
|
||||||
def test_boto3_head_object_if_modified_since():
|
def test_boto3_head_object_if_modified_since():
|
||||||
s3 = boto3.client('s3', region_name='us-east-1')
|
s3 = boto3.client('s3', region_name='us-east-1')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user