Files
python/exercises/practice/etl/etl_test.py

19 lines
336 B
Python
Raw Normal View History

2013-08-02 11:37:16 -05:00
import unittest
from etl import (
transform,
)
2020-10-15 12:46:24 -04:00
# Tests adapted from `problem-specifications//canonical-data.json`
2014-02-21 14:44:25 +08:00
2018-06-13 09:12:09 -04:00
class EtlTest(unittest.TestCase):
# Utility functions
def assertRaisesWithMessage(self, exception):
return self.assertRaisesRegex(exception, r".+")
2013-08-02 11:37:16 -05:00
2016-11-29 09:44:47 +01:00
if __name__ == "__main__":
2013-08-02 11:37:16 -05:00
unittest.main()