mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-04 19:25:51 +00:00
13 lines
282 B
Python
13 lines
282 B
Python
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
from ripple.util.Cache import NamedCache
|
|
|
|
from unittest import TestCase
|
|
|
|
class test_Cache(TestCase):
|
|
def setUp(self):
|
|
self.cache = NamedCache()
|
|
|
|
def test_trivial(self):
|
|
pass
|