Exemplo n.º 1
0
 def test_nowhere_leningrad(self):
     self.assertIs(reachable_destination('', 'LED'), False)
Exemplo n.º 2
0
 def test_gatwick_leningrad(self):
     self.assertIs(reachable_destination('LGW', 'LED'), True)
Exemplo n.º 3
0
 def test_nowhere_nowhere(self):
     self.assertIs(reachable_destination('', ''), False)
Exemplo n.º 4
0
 def test_nowhere_leningrad(self):
     self.assertIs(reachable_destination('', 'LED'), False)
Exemplo n.º 5
0
 def test_heathrow_lunarcity7(self):
     self.assertIs(reachable_destination('LHR', 'LC7'), False)
Exemplo n.º 6
0
 def test_seattle_manchester(self):
     self.assertIs(reachable_destination('SEA', 'MAN'), True)
Exemplo n.º 7
0
 def test_heathrow_lunarcity7(self):
     self.assertIs(reachable_destination('LHR', 'LC7'), False)
Exemplo n.º 8
0
 def test_stanstead_leningrad(self):
     self.assertIs(reachable_destination('STD', 'LED'), False)
Exemplo n.º 9
0
 def test_stanstead_leningrad(self):
     self.assertIs(reachable_destination('STD','LED'), False)
Exemplo n.º 10
0
 def test_stanstead_toronto(self):
     self.assertIs(reachable_destination('YYZ','LED'), False)
Exemplo n.º 11
0
 def test_heathrow_leningrad(self):
     self.assertIs(reachable_destination('LHR','LED'), False)
Exemplo n.º 12
0
 def test_manchester_leningrad(self):
     self.assertIs(reachable_destination('MAN', 'LED'), True)
Exemplo n.º 13
0
 def test_gatwick_leningrad(self):
     self.assertIs(reachable_destination('LGW', 'LED'), True)
Exemplo n.º 14
0
 def test_manchester_leningrad(self):
     self.assertIs(reachable_destination('MAN', 'LED'), True)
Exemplo n.º 15
0
 def test_leedsbradford_lunarcity7(self):
     self.assertIs(reachable_destination('LBA', 'LC7'), False)
Exemplo n.º 16
0
 def test_heathrow_leningrad(self):
     self.assertIs(reachable_destination('LHR', 'LED'), False)
Exemplo n.º 17
0
 def test_seattle_manchester(self):
     self.assertIs(reachable_destination('SEA', 'MAN'), True)
Exemplo n.º 18
0
 def test_stanstead_toronto(self):
     self.assertIs(reachable_destination('YYZ', 'LED'), False)
Exemplo n.º 19
0
 def test_manchester_lunarcity7(self):
     self.assertIs(reachable_destination('MAN','LC7'), True)
Exemplo n.º 20
0
 def test_leedsbradford_lunarcity7(self):
     self.assertIs(reachable_destination('LBA', 'LC7'), False)
Exemplo n.º 21
0
 def test_nowhere_nowhere(self):
     self.assertIs(reachable_destination('', ''), False)
Exemplo n.º 22
0
 def test_manchester_lunarcity7(self):
     self.assertIs(reachable_destination('MAN', 'LC7'), True)
Exemplo n.º 23
0
 def test_heathrow_nowhere(self):
     self.assertIs(reachable_destination('LHR', ''), False)
Exemplo n.º 24
0
 def test_heathrow_nowhere(self):
     self.assertIs(reachable_destination('LHR', ''), False)
Exemplo n.º 25
0
 def test_toronto_leningrad(self):
     self.assertIs(reachable_destination('YYZ', 'LED'), False)