9 lines
233 B
Python
9 lines
233 B
Python
|
from tests.helper import ExternalVersionTestCase
|
||
|
|
||
|
|
||
|
class CratesIOTest(ExternalVersionTestCase):
|
||
|
def test_npm(self):
|
||
|
self.assertEqual(
|
||
|
self.sync_get_version("example", {"cratesio": None}),
|
||
|
"0.1.0")
|