(self)
| 71 | self.assertEqual("Test", plugin.report.errors[0]) |
| 72 | |
| 73 | def test_python_path(self): |
| 74 | from api_app.analyzers_manager.observable_analyzers.dns.dns_resolvers.classic_dns_resolver import ( # noqa |
| 75 | ClassicDNSResolver, |
| 76 | ) |
| 77 | |
| 78 | class_ = ClassicDNSResolver |
| 79 | self.assertEqual( |
| 80 | class_.python_module.module, |
| 81 | "dns.dns_resolvers.classic_dns_resolver.ClassicDNSResolver", |
| 82 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected