Skip to content

Commit

Permalink
#1838: add start-desktop to tests
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@19599 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jun 10, 2018
1 parent 2e7511f commit addff72
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/unittests/unit/server/mixins/startdesktop_option_test.py
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()

0 comments on commit addff72

Please sign in to comment.