Skip to content

Commit

Permalink
#1773: add network state test
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@23131 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jul 10, 2019
1 parent aba1001 commit 3a40ffc
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions src/unittests/unit/server/mixins/networkstate_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/usr/bin/env python
# This file is part of Xpra.
# Copyright (C) 2018-2019 Antoine Martin <[email protected]>
# 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.util import AdHocStruct
from unit.server.mixins.servermixintest_util import ServerMixinTest


class MMAPMixinTest(ServerMixinTest):

def test_mmap(self):
from xpra.server.mixins.networkstate_server import NetworkStateServer
opts = AdHocStruct()
opts.pings = 1
opts.bandwidth_limit = "10Mbps"
self._test_mixin_class(NetworkStateServer, opts)

def main():
unittest.main()


if __name__ == '__main__':
main()

0 comments on commit 3a40ffc

Please sign in to comment.