def test_tap_type_to_target_type_with_defined_tap_type_returns_equivalent_target_type(self):
     self.assertEqual('INTEGER', tap_type_to_target_type('integer'))
 def test_tap_type_to_target_type_with_undefined_tap_type_returns_CHARACTER_VARYING(self):
     self.assertEqual('VARCHAR', tap_type_to_target_type('random-type'))
 def test_tap_type_to_target_type_with_defined_tap_type_returns_equivalent_target_type(self):
     self.assertEqual('VARCHAR', tap_type_to_target_type('Bool'))