mirror of
https://github.com/bspeice/metrik
synced 2024-11-05 06:58:12 -05:00
10 lines
180 B
Python
10 lines
180 B
Python
|
from unittest import TestCase
|
||
|
|
||
|
from metrik.targets.noop import NoOpTarget
|
||
|
|
||
|
|
||
|
class NoOpTest(TestCase):
|
||
|
def test_sanity(self):
|
||
|
t = NoOpTarget()
|
||
|
assert t.exists()
|