コード例 #1
0
 def test_ZIP_is_gps_name(self):
     assert TypeDetector.is_gps_name('ZIP') is False
コード例 #2
0
 def test_LOCATION_is_gps_name(self):
     assert TypeDetector.is_gps_name('LOCATION')
コード例 #3
0
 def test_latitude_is_gps_name(self):
     assert TypeDetector.is_gps_name('latitude')
コード例 #4
0
 def test_LONGITUDE_is_gps_name(self):
     assert TypeDetector.is_gps_name('LONGITUDE')
コード例 #5
0
 def test_Unique_Key_is_not_gps_name(self):
     assert TypeDetector.is_gps_name('Unique Key') is False