From c9383c72b2f62bee90050d02a307381cb6bfa536 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 19 Apr 2010 23:43:48 +0200 Subject: updated pydoc --- doc/pydoc/test.tc_directory.html | 218 --------------------------------------- 1 file changed, 218 deletions(-) delete mode 100644 doc/pydoc/test.tc_directory.html (limited to 'doc/pydoc/test.tc_directory.html') diff --git a/doc/pydoc/test.tc_directory.html b/doc/pydoc/test.tc_directory.html deleted file mode 100644 index 6ec13991..00000000 --- a/doc/pydoc/test.tc_directory.html +++ /dev/null @@ -1,218 +0,0 @@ - - -Python: module test.tc_directory - - - - -
 
- 
test.tc_directory
index
/home/hut/ranger/test/tc_directory.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
ranger.fsobject
-
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test1 -
-
-
-

- - - - - -
 
-class Test1(unittest.TestCase)
    
Method resolution order:
-
Test1
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
test_after_content_loaded(self)
- -
test_initial_condition(self)
- -
test_load_if_outdated(self)
- -
test_nonexistant_dir(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
setUp(self)
Hook method for setting up the test fixture before exercising it.
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
tearDown(self)
Hook method for deconstructing the test fixture after testing it.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-Data
       NONEXISTANT_DIR = '/home/hut/ranger/test/testdir/nonexistant'
-TESTDIR = '/home/hut/ranger/test/testdir'
-TESTFILE = '/home/hut/ranger/test/testdir/testfile5234148'
- \ No newline at end of file -- cgit 1.4.1-2-gfad0