File: tests_python.py

package info (click to toggle)
paperwork 2.2.5-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 166,664 kB
  • sloc: python: 44,775; makefile: 992; sh: 625; xml: 135
file content (74 lines) | stat: -rw-r--r-- 1,960 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import openpaperwork_core.tests.local_file


PLUGIN_NAME = "openpaperwork_core.fs.python"


class TestSafe(openpaperwork_core.tests.local_file.AbstractTestSafe):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestUnsafe(openpaperwork_core.tests.local_file.AbstractTestUnsafe):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestOpen(openpaperwork_core.tests.local_file.AbstractTestOpen):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestExists(openpaperwork_core.tests.local_file.AbstractTestExists):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestListDir(openpaperwork_core.tests.local_file.AbstractTestListDir):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestRename(openpaperwork_core.tests.local_file.AbstractTestRename):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestUnlink(openpaperwork_core.tests.local_file.AbstractTestUnlink):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestGetMtime(openpaperwork_core.tests.local_file.AbstractTestGetMtime):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestGetsize(openpaperwork_core.tests.local_file.AbstractTestGetsize):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestIsdir(openpaperwork_core.tests.local_file.AbstractTestIsdir):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestCopy(openpaperwork_core.tests.local_file.AbstractTestCopy):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestMkdirP(openpaperwork_core.tests.local_file.AbstractTestMkdirP):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestBasename(openpaperwork_core.tests.local_file.AbstractTestBasename):
    def get_plugin_name(self):
        return PLUGIN_NAME


class TestTemp(openpaperwork_core.tests.local_file.AbstractTestTemp):
    def get_plugin_name(self):
        return PLUGIN_NAME