~duplicity-team/duplicity/0.7-series

« back to all changes in this revision

Viewing changes to testing/manual/backendtest

  • Committer: Kenneth Loafman
  • Date: 2014-06-28 14:24:05 UTC
  • mfrom: (989.1.8 duplicity)
  • Revision ID: kenneth@loafman.com-20140628142405-hvesoaqdo7hx4cbj
* Merged in lp:~3v1n0/duplicity/copy.com-backend
  - I've added a backend for Copy.com cloud storage, this supports all the
    required operations and works as it should from my tests.
  - You can use it by calling duplicity with something like:
    copy://account@email.com:your-password@copy.com/duplicity
  - The only thing I've concerns with is the optimized support for _delete_list
    which can't be enabled here because the test_delete_list tries also to
    delete a not-existing files, and it requires the backend not to raise an
    exception in that case (is this somewhat wanted or could we do the same as
    for _delete or _query?)

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
        self.password = config.ftp_password
224
224
 
225
225
 
 
226
class copyTest(ManualBackendBase):
 
227
    def setBackendInfo(self):
 
228
        self.url_string = config.copy_url
 
229
        self.password = config.copy_password
 
230
 
 
231
 
226
232
if __name__ == "__main__":
227
233
    defaultTest = None
228
234
    if len(sys. argv) > 1: