mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-07-29 21:23:55 +08:00
7 lines
169 B
Python
7 lines
169 B
Python
from ddtrace import tracer, monkey
|
|
|
|
if __name__ == '__main__':
|
|
assert not tracer.enabled
|
|
assert len(monkey.get_patched_modules()) == 0
|
|
print('Test success')
|