Exemplo n.º 1
0
 def test_Decay_True_1000(self):
     t = Googlement('1000')
     self.assertEqual(t.Decay(), '1000')
Exemplo n.º 2
0
 def test_getL_True_1235(self):
     l = 1235
     t = Googlement(l)
     self.assertEqual(t.getL(), len(str(l)))
Exemplo n.º 3
0
 def test_Decay_True_0414(self):
     t = Googlement('0414')
     self.assertEqual(t.Decay(), '1002')
Exemplo n.º 4
0
 def test_Legal_False_1235(self):
     t = Googlement('1235')
     self.assertFalse(t.Legal)
Exemplo n.º 5
0
 def test_Legal_False_40(self):
     t = Googlement('40')
     self.assertFalse(t.Legal)
Exemplo n.º 6
0
 def test_Legal_True_1234(self):
     t = Googlement('1234')
     self.assertTrue(t.Legal)
Exemplo n.º 7
0
 def test_Legal_True_20(self):
     t = Googlement('20')
     self.assertTrue(t.Legal)
Exemplo n.º 8
0
 def test_Legal_True_0003(self):
     t = Googlement('0003')
     self.assertTrue(t.Legal)