33
|
1 # -*- coding: utf-8 -*-
|
|
2 #
|
|
3 # test/__init__.py
|
|
4 # Part of ‘python-daemon’, an implementation of PEP 3143.
|
|
5 #
|
|
6 # Copyright © 2008–2015 Ben Finney <ben+python@benfinney.id.au>
|
|
7 #
|
|
8 # This is free software: you may copy, modify, and/or distribute this work
|
|
9 # under the terms of the Apache License, version 2.0 as published by the
|
|
10 # Apache Software Foundation.
|
|
11 # No warranty expressed or implied. See the file ‘LICENSE.ASF-2’ for details.
|
|
12
|
|
13 """ Unit test suite for ‘daemon’ package.
|
|
14 """
|
|
15
|
|
16 from __future__ import (absolute_import, unicode_literals)
|
|
17
|
|
18
|
|
19 # Local variables:
|
|
20 # coding: utf-8
|
|
21 # mode: python
|
|
22 # End:
|
|
23 # vim: fileencoding=utf-8 filetype=python :
|