Compare commits

...

6 commits

Author SHA1 Message Date
Alfredo Deza
d98d2b7c8e add all test files for object operations
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2015-01-02 12:34:53 -05:00
Alfredo Deza
2b2a557095 add __init__.py files to test dirs
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2014-12-16 11:28:22 -05:00
Alfredo Deza
2785f0ce32 add bucket operations
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2014-12-16 11:25:59 -05:00
Alfredo Deza
41e230be8f fix proper author of library
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2014-12-16 09:42:57 -05:00
Alfredo Deza
9ce8b69cc9 create an operations/service/test_get.py path
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2014-12-16 09:42:49 -05:00
Alfredo Deza
299b076baa move library tests into lib
Signed-off-by: Alfredo Deza <alfredo@deza.pe>
2014-12-16 09:20:12 -05:00
30 changed files with 43 additions and 2 deletions

View file

@ -0,0 +1,6 @@
"""
DELETE operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,6 @@
"""
GET operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,6 @@
"""
HEAD operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,6 @@
"""
LIST operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,6 @@
"""
POST operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,6 @@
"""
PUT operations on buckets
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketOps.html
"""

View file

@ -0,0 +1,5 @@
"""
GET operations on the Service
http://docs.aws.amazon.com/AmazonS3/latest/API/RESTServiceGET.html
"""

View file

@ -6,8 +6,8 @@ setup(
version='0.0.1',
packages=find_packages(),
author='Tommi Virtanen',
author_email='tommi.virtanen@dreamhost.com',
author='Red Hat Storage',
author_email='ceph-qa@ceph.com',
description='Unofficial Amazon AWS S3 compatibility tests',
license='MIT',
keywords='s3 web testing',