コード例 #1
0
 def test_returns_above_min(self):
     self.assertEqual(bound(0, -1, 2), 0)
コード例 #2
0
 def test_returns_between_min_max(self):
     self.assertEqual(bound(0, 1, 2), 1)
コード例 #3
0
 def test_returns_below_max(self):
     self.assertEqual(bound(0, 3, 2), 2)
コード例 #4
0
 def test_max_below_min_raises_exception(self):
     with self.assertRaises(Exception):
         bound(0, 0, -1)
コード例 #5
0
ファイル: test_geocalc.py プロジェクト: thebent/ichnaea
 def test_returns_above_min(self):
     self.assertEqual(bound(0, -1, 2), 0)
コード例 #6
0
ファイル: test_geocalc.py プロジェクト: thebent/ichnaea
 def test_returns_below_max(self):
     self.assertEqual(bound(0, 3, 2), 2)
コード例 #7
0
ファイル: test_geocalc.py プロジェクト: thebent/ichnaea
 def test_returns_between_min_max(self):
     self.assertEqual(bound(0, 1, 2), 1)
コード例 #8
0
ファイル: test_geocalc.py プロジェクト: thebent/ichnaea
 def test_max_below_min_raises_exception(self):
     with self.assertRaises(Exception):
         bound(0, 0, -1)