~landscape/zope3/ztk-1.1.3

« back to all changes in this revision

Viewing changes to src/twisted/web2/dav/test/test_lock.py

  • Committer: Andreas Hasenack
  • Date: 2009-07-20 17:49:16 UTC
  • Revision ID: andreas@canonical.com-20090720174916-g2tn6qmietz2hn0u
Revert twisted removal, it breaks several dozen tests [trivial]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##
 
2
# Copyright (c) 2005 Apple Computer, Inc. All rights reserved.
 
3
#
 
4
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
5
# of this software and associated documentation files (the "Software"), to deal
 
6
# in the Software without restriction, including without limitation the rights
 
7
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
8
# copies of the Software, and to permit persons to whom the Software is
 
9
# furnished to do so, subject to the following conditions:
 
10
 
11
# The above copyright notice and this permission notice shall be included in all
 
12
# copies or substantial portions of the Software.
 
13
 
14
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
17
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
18
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
20
# SOFTWARE.
 
21
#
 
22
# DRI: Wilfredo Sanchez, wsanchez@apple.com
 
23
##
 
24
 
 
25
from twisted.trial.unittest import SkipTest
 
26
import twisted.web2.dav.test.util
 
27
 
 
28
class LOCK_UNLOCK(twisted.web2.dav.test.util.TestCase):
 
29
    """
 
30
    LOCK, UNLOCK requests
 
31
    """
 
32
    # FIXME:
 
33
    # Check PUT
 
34
    # Check POST
 
35
    # Check PROPPATCH
 
36
    # Check LOCK
 
37
    # Check UNLOCK
 
38
    # Check MOVE, COPY
 
39
    # Check DELETE
 
40
    # Check MKCOL
 
41
    # Check null resource
 
42
    # Check collections
 
43
    # Check depth
 
44
    # Check If header
 
45
    # Refresh lock
 
46
 
 
47
    def test_LOCK_UNLOCK(self):
 
48
        """
 
49
        LOCK, UNLOCK request
 
50
        """
 
51
        raise SkipTest("test unimplemented")
 
52
 
 
53
    test_LOCK_UNLOCK.todo = "LOCK/UNLOCK unimplemented"