@@ -50,7 +50,7 @@ def setUp(self):
50
50
TestBase .setUp (self )
51
51
self ._reset_plugin_manager ()
52
52
53
- def _test_load_plugin_from_plugin_path (self ):
53
+ def test_load_plugin_from_plugin_path (self ):
54
54
"""Test loading rez plugin from plugin_path"""
55
55
self .update_settings (dict (
56
56
plugin_path = [self .data_path ("extensions" , "foo" )]
@@ -60,7 +60,7 @@ def _test_load_plugin_from_plugin_path(self):
60
60
"package_repository" , "cloud" )
61
61
self .assertEqual (cloud_cls .name (), "cloud" )
62
62
63
- def _test_load_plugin_from_python_module (self ):
63
+ def test_load_plugin_from_python_module (self ):
64
64
"""Test loading rez plugin from python modules"""
65
65
with restore_sys_path ():
66
66
sys .path .append (self .data_path ("extensions" ))
@@ -76,7 +76,7 @@ def test_load_plugin_from_entry_points(self):
76
76
"command" , "baz" )
77
77
self .assertEqual (baz_cls .name (), "baz" )
78
78
79
- def _test_plugin_override_1 (self ):
79
+ def test_plugin_override_1 (self ):
80
80
"""Test plugin from plugin_path can override the default"""
81
81
self .update_settings (dict (
82
82
plugin_path = [self .data_path ("extensions" , "non-mod" )]
@@ -86,7 +86,7 @@ def _test_plugin_override_1(self):
86
86
"package_repository" , "memory" )
87
87
self .assertEqual ("non-mod" , mem_cls .on_test )
88
88
89
- def _test_plugin_override_2 (self ):
89
+ def test_plugin_override_2 (self ):
90
90
"""Test plugin from python modules can override the default"""
91
91
with restore_sys_path ():
92
92
sys .path .append (self .data_path ("extensions" ))
@@ -95,7 +95,7 @@ def _test_plugin_override_2(self):
95
95
"package_repository" , "memory" )
96
96
self .assertEqual ("bar" , mem_cls .on_test )
97
97
98
- def _test_plugin_override_3 (self ):
98
+ def test_plugin_override_3 (self ):
99
99
"""Test plugin from python modules can override plugin_path"""
100
100
with restore_sys_path ():
101
101
# setup new
0 commit comments