-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://xpra.org/svn/Xpra/trunk@19599 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
src/unittests/unit/server/mixins/startdesktop_option_test.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/usr/bin/env python | ||
# This file is part of Xpra. | ||
# Copyright (C) 2018 Antoine Martin <antoine@devloop.org.uk> | ||
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any | ||
# later version. See the file COPYING for details. | ||
|
||
import unittest | ||
|
||
from xpra.os_util import OSX, POSIX, PYTHON2 | ||
from unit.server.mixins.server_mixins_option_test_util import ServerMixinsOptionTestUtil | ||
|
||
|
||
class StartDesktopOptionTest(ServerMixinsOptionTestUtil): | ||
|
||
def test_start_all(self): | ||
self._test_all("start-desktop") | ||
|
||
|
||
def main(): | ||
if POSIX and PYTHON2 and not OSX: | ||
unittest.main() | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |