示例#1
0
 def test_last_pivot_empty(self):
     l1 = []
     res = sort.last_pivot(l1)
     expect = None
     self.assertEqual(res, expect,
                      "the pivot of %s is %s expected: %s" %
                      (l1, res, expect))
示例#2
0
 def test_last_pivot_empty(self):
     l1 = []
     res = sort.last_pivot(l1)
     expect = None
     self.assertEqual(
         res, expect,
         "the pivot of %s is %s expected: %s" % (l1, res, expect))
示例#3
0
 def test_last_pivot_normal(self):
     l1 = [1, 2, 3, 4, 5, 6, 7]
     res = sort.last_pivot(l1)
     expect = len(l1)-1
     self.assertEqual(res, expect,
                      "the pivot of %s is %s expected: %s" %
                      (l1, res, expect))
示例#4
0
 def test_last_pivot_normal(self):
     l1 = [1, 2, 3, 4, 5, 6, 7]
     res = sort.last_pivot(l1)
     expect = len(l1) - 1
     self.assertEqual(
         res, expect,
         "the pivot of %s is %s expected: %s" % (l1, res, expect))