Commit 4844066e authored by Łukasz Nowak's avatar Łukasz Nowak

Drop not needed dummy module.

parent 2530615b
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors. All Rights Reserved.
#
##############################################################################
import Products.Vifib.tests.VifibMixin
class testSlapOSMixin(Products.Vifib.tests.VifibMixin.testVifibMixin):
pass
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Nexedi SA and Contributors. All Rights Reserved.
#
##############################################################################
import unittest
from SlapOSMixin import testSlapOSMixin
class TestSlapOSDummy(testSlapOSMixin):
run_all_test = 1
def test(self):
self.assertTrue(True)
def getTitle(self):
return "Dummy tests in order to have tests from BT5 run"
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestSlapOSDummy))
return suite
# -*- coding: utf-8 -*-
##############################################################################
#
# Copyright (c) 2012 Vifib SA and Contributors. All Rights Reserved.
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly adviced to contract a Free Software
# Service Company
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
##############################################################################
import unittest
import Products.Vifib.tests.VifibMixin
class testSlapOSMixin(Products.Vifib.tests.VifibMixin.testVifibMixin):
pass
class TestSlapOSDummy(testSlapOSMixin):
run_all_test = 1
def test(self):
self.assertTrue(True)
def getTitle(self):
return "Dummy tests in order to have tests from BT5 run"
def test_suite():
suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(TestSlapOSDummy))
return suite
......@@ -27,5 +27,5 @@ class VIFIB(SavedTestSuite, ProjectTestSuite):
class SlapOSCloud(SavedTestSuite, ProjectTestSuite):
_product_list = ['SlapOS']
_saved_test_id = 'Products.SlapOS.tests.SlapOSMixin.testSlapOSMixin'
_saved_test_id = 'Products.SlapOS.tests.testSlapOSMixin.testSlapOSMixin'
_bt_list = ['slapos_cloud']
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment