1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-07 16:49:17 +00:00

migrate trans to trans_read

This commit is contained in:
deadc0de6
2019-06-09 18:04:34 +02:00
parent 9df3522a17
commit 9d0c30e633
4 changed files with 11 additions and 8 deletions

View File

@@ -349,7 +349,7 @@ class TestImport(unittest.TestCase):
self.assertFalse(any(a.endswith('ing') for a in actions))
# testing transformations
transformations = y['trans'].keys()
transformations = y['trans_read'].keys()
self.assertTrue(all(t.endswith('ed') for t in transformations))
self.assertFalse(any(t.endswith('ing') for t in transformations))
transformations = y['trans_write'].keys()
@@ -391,7 +391,7 @@ class TestImport(unittest.TestCase):
self.assertFalse(any(action.endswith('ed') for action in actions))
# testing transformations
transformations = y['trans'].keys()
transformations = y['trans_read'].keys()
self.assertTrue(all(t.endswith('ing') for t in transformations))
self.assertFalse(any(t.endswith('ed') for t in transformations))
transformations = y['trans_write'].keys()