From: robk-tahoe <robk-tahoe@allmydata.com>
Date: Fri, 3 Oct 2008 22:39:44 +0000 (-0700)
Subject: fuse/runtests: remove write small file test, as it's subsumed by the tiny_file test
X-Git-Url: https://git.rkrishnan.org/specifications/%5B/%5D%20/flags/reliability?a=commitdiff_plain;h=50986dc1e08a18a4f254155c6e9786fbe09a3ec1;p=tahoe-lafs%2Ftahoe-lafs.git

fuse/runtests: remove write small file test, as it's subsumed by the tiny_file test
---

diff --git a/contrib/fuse/runtests.py b/contrib/fuse/runtests.py
index ef9db4a5..54c12a2e 100644
--- a/contrib/fuse/runtests.py
+++ b/contrib/fuse/runtests.py
@@ -430,25 +430,6 @@ class SystemTest (object):
         body = self.webapi_call('GET', '/uri/%s/%s' % (dircap, path))
         return body
 
-    def test_write_small_file(self, testcap, testdir):
-        name = 'smallfile.txt'
-        body = 'this is a small file'
-
-        try:
-            path = os.path.join(testdir, name)
-            f = file(path, 'w')
-            f.write(body)
-            f.close()
-        except Exception, err:
-            tmpl = 'Could not write file contents at %r: %r'
-            raise TestFailure(tmpl, path, err)
-
-        uploaded_body = self.get_file(testcap, name)
-
-        if uploaded_body != body:
-            tmpl = 'Expected file contents %r but found %r'
-            raise TestFailure(tmpl, body, uploaded_body)
-
     def test_write_tiny_file(self, testcap, testdir):
         self._write_test_linear(testcap, testdir, name='tiny.junk', bs=2**9, sz=2**9)