This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/storage/fakestorage.py

28 lines
541 B
Python
Raw Normal View History

from storage.basestorage import BaseStorage
class FakeStorage(BaseStorage):
def _init_path(self, path=None, create=False):
return path
def get_content(self, path):
raise IOError('Fake files are fake!')
def put_content(self, path, content):
return path
def stream_read(self, path):
yield ''
def stream_write(self, path, fp, content_type=None, content_encoding=None):
pass
def remove(self, path):
pass
def exists(self, path):
return False
def get_checksum(self, path):
2014-11-24 21:07:38 +00:00
return 'abcdefg'