summaryrefslogtreecommitdiff
path: root/ick2/persistent_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-07-20 16:52:01 +0300
committerLars Wirzenius <liw@liw.fi>2019-08-03 21:06:50 +0300
commit8344a860d226d8a5172bcb2e9de5946717a950ca (patch)
tree83947c82747eb7404a575e40594e9afd059bfd08 /ick2/persistent_tests.py
parent2cdb28a8350478a5d92607be8c95d5e5d43f4dfc (diff)
downloadick2-8344a860d226d8a5172bcb2e9de5946717a950ca.tar.gz
Drop: use of old persistent state classes
Diffstat (limited to 'ick2/persistent_tests.py')
-rw-r--r--ick2/persistent_tests.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/ick2/persistent_tests.py b/ick2/persistent_tests.py
index 18b5c5c..961742f 100644
--- a/ick2/persistent_tests.py
+++ b/ick2/persistent_tests.py
@@ -90,12 +90,3 @@ class PersistentStateTestsMixIn:
self.state.write_resource(token, 'silly', '#1', r)
with self.assertRaises(ick2.NotFound):
self.state.remove_resource(token, 'silly', '#2')
-
-
-class MemoryPersistentStateTests(unittest.TestCase, PersistentStateTestsMixIn):
-
- def get_token(self):
- return 'DUMMY-TOKEN'
-
- def setUp(self):
- self.state = ick2.MemoryPersistentState()