コード例 #1
0
 def test_backend_filter_rejects_frontend_plugin(self):
     assert not backend_filter(TestFilters.FrontendTestPluginModule)
コード例 #2
0
 def test_backend_filter_accepts_backend_plugin(self):
     assert backend_filter(TestFilters.BackendTestPluginModule)
コード例 #3
0
 def test_backend_filter_rejects_base_class(self):
     assert not backend_filter(BackendModule)