Esempio n. 1
0
 def test_round_to_decimal_no_precision(self):
     self.assertEqual(round_to_decimal(5.2, 1), 5)
Esempio n. 2
0
 def test_round_to_decimal_two_precisions(self):
     self.assertEqual(round_to_decimal(5.62, 0.05), 5.60)
Esempio n. 3
0
 def test_round_to_decimal_up_upper(self):
     self.assertEqual(round_to_decimal(5.8), 6.0)
Esempio n. 4
0
 def test_round_to_decimal_no_round(self):
     self.assertEqual(round_to_decimal(5.0), 5.0)
Esempio n. 5
0
 def test_round_to_decimal_down_upper(self):
     self.assertEqual(round_to_decimal(5.6), 5.5)
Esempio n. 6
0
 def test_round_to_decimal_up_lower(self):
     self.assertEqual(round_to_decimal(5.4), 5.5)
Esempio n. 7
0
 def test_round_to_decimal_down_lower(self):
     self.assertEqual(round_to_decimal(5.2), 5.0)