diff options
author | hut <hut@lavabit.com> | 2010-06-09 14:10:06 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2010-06-09 14:10:06 +0200 |
commit | a4c9208bb69b09207c017ae88c810ef0ee83a780 (patch) | |
tree | 1666c23d6d69481587d26669c790b278123b1f0a /test/tc_ui.py | |
parent | 1d895690f81f2cb3a308416c29b280e91e681e36 (diff) | |
parent | e74222ee48435895a636812f908c862f3fb7acb6 (diff) | |
download | ranger-a4c9208bb69b09207c017ae88c810ef0ee83a780.tar.gz |
Merge branch 'master' into preview
Conflicts: ranger/fsobject/file.py
Diffstat (limited to 'test/tc_ui.py')
-rw-r--r-- | test/tc_ui.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/tc_ui.py b/test/tc_ui.py index 3c659459..dc8d669d 100644 --- a/test/tc_ui.py +++ b/test/tc_ui.py @@ -13,14 +13,12 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -if __name__ == '__main__': from __init__ import init; init() - import unittest import curses from ranger.gui import ui -from test import Fake, OK, raise_ok +from testlib import Fake, OK, raise_ok ui.curses = Fake() @@ -39,7 +37,7 @@ class Test(unittest.TestCase): def tearDown(self): self.ui.destroy() - + def test_passing(self): # Test whether certain method calls are passed to widgets widget = self.ui.widget |