/usr/share/pyshared/yokadi/tests/tuitestcase.py is in yokadi 0.14.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # -*- coding: UTF-8 -*-
"""
TUI module test cases
@author: Aurélien Gâteau <aurelien.gateau@free.fr>
@license: GPL v3 or later
"""
import os
import unittest
from yokadi.ycli import tui
class TuiTestCase(unittest.TestCase):
def testEditEmptyText(self):
os.environ["EDITOR"] = "/bin/true"
out = tui.editText(None)
self.assertEqual(out, "")
|