From 186b64b6339f42db615fe80949d9a5d727e07463 Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@allmydata.com>
Date: Tue, 28 Oct 2008 22:00:15 -0700
Subject: [PATCH] test_web.py: one more line of test coverage

---
 src/allmydata/test/test_web.py | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/allmydata/test/test_web.py b/src/allmydata/test/test_web.py
index 40f9e402..0d80b52e 100644
--- a/src/allmydata/test/test_web.py
+++ b/src/allmydata/test/test_web.py
@@ -2197,6 +2197,16 @@ class Web(WebMixin, testutil.StallMixin, unittest.TestCase):
         d.addCallback(_made_dir)
         return d
 
+    def test_PUT_DIRURL_bad_t(self):
+        d = self.shouldFail2(error.Error, "test_PUT_DIRURL_bad_t",
+                                 "400 Bad Request", "PUT to a directory",
+                                 self.PUT, self.public_url + "/foo?t=BOGUS", "")
+        d.addCallback(lambda res:
+                      self.failUnlessChildURIIs(self.public_root,
+                                                u"foo",
+                                                self._foo_uri))
+        return d
+
     def test_PUT_NEWFILEURL_uri(self):
         contents, n, new_uri = self.makefile(8)
         d = self.PUT(self.public_url + "/foo/new.txt?t=uri", new_uri)
-- 
2.45.2