Lines Matching refs:other1

45         other1 = wstool.config_elements.ConfigElement(path, localname)
46 self.assertEqual(path, other1.get_path())
47 self.assertEqual(localname, other1.get_local_name())
48 self.assertFalse(other1.is_vcs_element())
49 other1 = wstool.config_elements.OtherConfigElement(path, localname)
50 self.assertEqual(path, other1.get_path())
51 self.assertEqual(localname, other1.get_local_name())
52 …self.assertEqual({'other': {'local-name': 'some/local/name'}}, other1.get_path_spec().get_legacy_y…
53 self.assertFalse(other1.is_vcs_element())
54 other1 = wstool.config_elements.SetupConfigElement(path, localname)
55 self.assertEqual(path, other1.get_path())
56 self.assertEqual(localname, other1.get_local_name())
57 …self.assertEqual({'setup-file': {'local-name': 'some/local/name'}}, other1.get_path_spec().get_leg…
58 self.assertFalse(other1.is_vcs_element())
59 other1 = wstool.config_elements.OtherConfigElement(path, localname, properties=[{}])
60 self.assertEqual(path, other1.get_path())
61 self.assertEqual(localname, other1.get_local_name())
62 …self.assertEqual({'other': {'local-name': 'some/local/name'}}, other1.get_path_spec().get_legacy_y…
63 self.assertFalse(other1.is_vcs_element())
64 other1 = wstool.config_elements.OtherConfigElement(path, localname, properties=['meta'])
65 self.assertEqual(path, other1.get_path())
66 self.assertEqual(localname, other1.get_local_name())
67 …self.assertEqual({'other': {'local-name': 'some/local/name', 'meta': None}}, other1.get_path_spec(…
68 self.assertFalse(other1.is_vcs_element())
69other1 = wstool.config_elements.OtherConfigElement(path, localname, properties=[{'meta': {'repo-na…
70 self.assertEqual(path, other1.get_path())
71 self.assertEqual(localname, other1.get_local_name())
72 …-name': 'some/local/name', 'meta': {'repo-name': 'skynetish-ros-pkg'}}}, other1.get_path_spec().ge…
73 self.assertFalse(other1.is_vcs_element())