File: local_tests.py

package info (click to toggle)
python-spur 0.3.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: python: 1,188; makefile: 39
file content (17 lines) | stat: -rw-r--r-- 320 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import spur

from .process_test_set import ProcessTestSet
from .open_test_set import OpenTestSet


class LocalTestMixin(object):
    def create_shell(self):
        return spur.LocalShell()


class LocalOpenTests(OpenTestSet, LocalTestMixin):
    pass


class LocalProcessTests(ProcessTestSet, LocalTestMixin):
    pass