From 49e253fd606d47508d1b449325718f855c263d0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Elio=20Petten=C3=B2?= Date: Sun, 29 Sep 2013 20:24:18 +0100 Subject: Fix style for tests. --- test/test_common.py | 51 +++++++++++++++++++++++---------------------------- 1 file changed, 23 insertions(+), 28 deletions(-) (limited to 'test/test_common.py') diff --git a/test/test_common.py b/test/test_common.py index 1f6c8da..07b65d9 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -10,45 +10,40 @@ import os import sys import unittest -import mock - sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) from glucometerutils import common from glucometerutils import exceptions class TestCommon(unittest.TestCase): - def setUp(self): - pass - - def test_glucose_conversion(self): - self.assertEqual( - 5.56, common.convert_glucose_unit( - 100, common.UNIT_MGDL, common.UNIT_MMOLL)) + def test_glucose_conversion(self): + self.assertEqual( + 5.56, common.convert_glucose_unit( + 100, common.UNIT_MGDL, common.UNIT_MMOLL)) - self.assertEqual( - 5.56, common.convert_glucose_unit( - 100, common.UNIT_MGDL)) + self.assertEqual( + 5.56, common.convert_glucose_unit( + 100, common.UNIT_MGDL)) - self.assertEqual( - 180, common.convert_glucose_unit( - 10, common.UNIT_MMOLL, common.UNIT_MGDL)) + self.assertEqual( + 180, common.convert_glucose_unit( + 10, common.UNIT_MMOLL, common.UNIT_MGDL)) - self.assertEqual( - 180, common.convert_glucose_unit( - 10, common.UNIT_MMOLL)) + self.assertEqual( + 180, common.convert_glucose_unit( + 10, common.UNIT_MMOLL)) - self.assertEqual( - 100, common.convert_glucose_unit( - 100, common.UNIT_MGDL, common.UNIT_MGDL)) + self.assertEqual( + 100, common.convert_glucose_unit( + 100, common.UNIT_MGDL, common.UNIT_MGDL)) - self.assertEqual( - 10, common.convert_glucose_unit( - 10, common.UNIT_MMOLL, common.UNIT_MMOLL)) + self.assertEqual( + 10, common.convert_glucose_unit( + 10, common.UNIT_MMOLL, common.UNIT_MMOLL)) - self.assertRaises( - exceptions.InvalidGlucoseUnit, - common.convert_glucose_unit, common.UNIT_MMOLL, 'foo') + self.assertRaises( + exceptions.InvalidGlucoseUnit, + common.convert_glucose_unit, common.UNIT_MMOLL, 'foo') if __name__ == '__main__': - unittest.main() + unittest.main() -- cgit v1.2.3