Statistics
| Branch: | Tag: | Revision:

root / test / py / ganeti.luxi_unittest.py @ 560ef132

History | View | Annotate | Download (1 kB)

1 231db3a5 Michael Hanselmann
#!/usr/bin/python
2 231db3a5 Michael Hanselmann
#
3 231db3a5 Michael Hanselmann
4 912b2278 Petr Pudlak
# Copyright (C) 2010, 2013 Google Inc.
5 231db3a5 Michael Hanselmann
#
6 231db3a5 Michael Hanselmann
# This program is free software; you can redistribute it and/or modify
7 231db3a5 Michael Hanselmann
# it under the terms of the GNU General Public License as published by
8 231db3a5 Michael Hanselmann
# the Free Software Foundation; either version 2 of the License, or
9 231db3a5 Michael Hanselmann
# (at your option) any later version.
10 231db3a5 Michael Hanselmann
#
11 231db3a5 Michael Hanselmann
# This program is distributed in the hope that it will be useful, but
12 231db3a5 Michael Hanselmann
# WITHOUT ANY WARRANTY; without even the implied warranty of
13 231db3a5 Michael Hanselmann
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 231db3a5 Michael Hanselmann
# General Public License for more details.
15 231db3a5 Michael Hanselmann
#
16 231db3a5 Michael Hanselmann
# You should have received a copy of the GNU General Public License
17 231db3a5 Michael Hanselmann
# along with this program; if not, write to the Free Software
18 231db3a5 Michael Hanselmann
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 231db3a5 Michael Hanselmann
# 02110-1301, USA.
20 231db3a5 Michael Hanselmann
21 231db3a5 Michael Hanselmann
22 912b2278 Petr Pudlak
"""Script for unittesting the luxi module.
23 912b2278 Petr Pudlak

24 912b2278 Petr Pudlak
Currently empty (after all the tests moved to ganeti.rpc.client_unittest.py)."""
25 231db3a5 Michael Hanselmann
26 231db3a5 Michael Hanselmann
27 231db3a5 Michael Hanselmann
import unittest
28 231db3a5 Michael Hanselmann
29 e986f20c Michael Hanselmann
from ganeti import constants
30 e986f20c Michael Hanselmann
from ganeti import errors
31 231db3a5 Michael Hanselmann
from ganeti import luxi
32 231db3a5 Michael Hanselmann
from ganeti import serializer
33 231db3a5 Michael Hanselmann
34 231db3a5 Michael Hanselmann
import testutils