コード例 #1
0
ファイル: test_utils.py プロジェクト: hivetech/dna
 def test_truncate_str(self):
     self.assertEqual(utils.truncate('nofloat'), 'nofloat')
コード例 #2
0
ファイル: test_utils.py プロジェクト: hivetech/dna
 def test_truncate_str(self):
     self.assertEqual(utils.truncate('nofloat'), 'nofloat')
コード例 #3
0
ファイル: test_utils.py プロジェクト: hivetech/dna
 def test_truncate_float(self):
     original_float = 3.232999
     truncated_float = utils.truncate(original_float, n=2)
     self.assertIsInstance(truncated_float, float)
     self.assertGreater(original_float, truncated_float)
コード例 #4
0
ファイル: test_utils.py プロジェクト: hivetech/dna
 def test_truncate_float(self):
     original_float = 3.232999
     truncated_float = utils.truncate(original_float, n=2)
     self.assertIsInstance(truncated_float, float)
     self.assertGreater(original_float, truncated_float)