mirror of https://github.com/flaggo/pydu.git
8 lines
276 B
Python
8 lines
276 B
Python
![]() |
from pydu.platform import (WINDOWS, LINUX, POSIX, DARWIN, SUNOS, SMARTOS,
|
||
|
FREEBSD, NETBSD, OPENBSD, AIX)
|
||
|
|
||
|
|
||
|
def test_platform_constants():
|
||
|
assert any([WINDOWS, LINUX, POSIX, DARWIN, SUNOS, SMARTOS,
|
||
|
FREEBSD, NETBSD, OPENBSD, AIX])
|