Esempio n. 1
0
 def testGenerator(self):
     self.assertEqual(navigation.first(lambda x: x, xrange(5)), 1)
Esempio n. 2
0
 def testMatch(self):
     self.assertEqual(navigation.first(lambda x: x, [False, True]), True)
Esempio n. 3
0
 def testFirstMatch(self):
     self.assertEqual(navigation.first(lambda x: x, [1, 2]), 1)
Esempio n. 4
0
 def testEmptyList(self):
     self.assertEqual(navigation.first(lambda x: x, []), None)
Esempio n. 5
0
 def testNoMatchInList(self):
     self.assertEqual(navigation.first(lambda x: x, [False]), None)
Esempio n. 6
0
 def testGenerator(self):
     self.assertEqual(navigation.first(lambda x: x, range(5)), 1)
Esempio n. 7
0
 def testFirstMatch(self):
     self.assertEqual(navigation.first(lambda x: x, [1, 2]), 1)
Esempio n. 8
0
 def testMatch(self):
     self.assertEqual(navigation.first(lambda x: x, [False, True]), True)
Esempio n. 9
0
 def testNoMatchInList(self):
     self.assertEqual(navigation.first(lambda x: x, [False]), None)
Esempio n. 10
0
 def testEmptyList(self):
     self.assertEqual(navigation.first(lambda x: x, []), None)