Exemplo n.º 1
0
 def test_keyword__of__absent(self):
     with self.assertNotFound():
         __unit__.findlast(of=None, in_=self.LIST)
Exemplo n.º 2
0
 def test_positional__list__normal(self):
     for elem in self.LIST:
         self.assertEquals(elem, __unit__.findlast(elem, self.LIST))
Exemplo n.º 3
0
 def test_keyword__only_list(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(in_=self.LIST)
Exemplo n.º 4
0
 def test_positional__list__some_object(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(None, object())
Exemplo n.º 5
0
 def test_positional__list__empty(self):
     with self.assertNotFound():
         __unit__.findlast(None, [])
     for elem in self.LIST:
         with self.assertNotFound():
             __unit__.findlast(elem, [])
Exemplo n.º 6
0
 def test_keyword__where__present(self):
     self.assertEquals(
         self.LAST_EVEN, __unit__.findlast(where=self.EVEN, in_=self.LIST))
     self.assertEquals(
         self.LAST_ODD, __unit__.findlast(where=self.ODD, in_=self.LIST))
Exemplo n.º 7
0
 def test_positional__list__some_object(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(None, object())
Exemplo n.º 8
0
 def test_keyword__where__absent(self):
     with self.assertNotFound():
         __unit__.findlast(where=self.NEGATIVE, in_=self.LIST)
Exemplo n.º 9
0
 def test_keyword__where__present(self):
     self.assertEquals(self.LAST_EVEN,
                       __unit__.findlast(where=self.EVEN, in_=self.LIST))
     self.assertEquals(self.LAST_ODD,
                       __unit__.findlast(where=self.ODD, in_=self.LIST))
Exemplo n.º 10
0
 def test_keyword__of__absent(self):
     with self.assertNotFound():
         __unit__.findlast(of=None, in_=self.LIST)
Exemplo n.º 11
0
 def test_keyword__of__present(self):
     for elem in self.LIST:
         self.assertEquals(elem, __unit__.findlast(of=elem, in_=self.LIST))
Exemplo n.º 12
0
 def test_keyword__only_list(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(in_=self.LIST)
Exemplo n.º 13
0
 def test_positional__list__normal(self):
     for elem in self.LIST:
         self.assertEquals(elem, __unit__.findlast(elem, self.LIST))
Exemplo n.º 14
0
 def test_positional__list__empty(self):
     with self.assertNotFound():
         __unit__.findlast(None, [])
     for elem in self.LIST:
         with self.assertNotFound():
             __unit__.findlast(elem, [])
Exemplo n.º 15
0
 def test_keyword__of__present(self):
     for elem in self.LIST:
         self.assertEquals(elem, __unit__.findlast(of=elem, in_=self.LIST))
Exemplo n.º 16
0
 def test_keyword__both(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(of=None, where=self.EVEN, in_=self.LIST)
Exemplo n.º 17
0
 def test_keyword__where__absent(self):
     with self.assertNotFound():
         __unit__.findlast(where=self.NEGATIVE, in_=self.LIST)
Exemplo n.º 18
0
 def test_positional__list__none(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(None, None)
Exemplo n.º 19
0
 def test_keyword__both(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(of=None, where=self.EVEN, in_=self.LIST)
Exemplo n.º 20
0
 def test_positional__list__none(self):
     with self.assertRaises(TypeError):
         __unit__.findlast(None, None)