Files
python/exercises/practice/etl/etl_test.py
BethanyG aa3e379ff1 [DOCS]: Update Python Versions and Requirements (#3467)
* Additional sweep to update Python versions and supported Python versions.
* Fixed requirements and CONTRIBUTING.
* Trying a different line skip to see if it fixes CI.  CI is failing on test file generation again.
* Once again re-rendering tests to see if it fixes CI.
[no important files changed]
2023-07-16 15:09:14 -07:00

67 lines
1.8 KiB
Python

# These tests are auto-generated with test data from:
# https://github.com/exercism/problem-specifications/tree/main/exercises/etl/canonical-data.json
# File last updated on 2023-07-16
import unittest
from etl import (
transform,
)
class EtlTest(unittest.TestCase):
def test_single_letter(self):
legacy_data = {1: ["A"]}
data = {"a": 1}
self.assertEqual(transform(legacy_data), data)
def test_single_score_with_multiple_letters(self):
legacy_data = {1: ["A", "E", "I", "O", "U"]}
data = {"a": 1, "e": 1, "i": 1, "o": 1, "u": 1}
self.assertEqual(transform(legacy_data), data)
def test_multiple_scores_with_multiple_letters(self):
legacy_data = {1: ["A", "E"], 2: ["D", "G"]}
data = {"a": 1, "d": 2, "e": 1, "g": 2}
self.assertEqual(transform(legacy_data), data)
def test_multiple_scores_with_differing_numbers_of_letters(self):
legacy_data = {
1: ["A", "E", "I", "O", "U", "L", "N", "R", "S", "T"],
2: ["D", "G"],
3: ["B", "C", "M", "P"],
4: ["F", "H", "V", "W", "Y"],
5: ["K"],
8: ["J", "X"],
10: ["Q", "Z"],
}
data = {
"a": 1,
"b": 3,
"c": 3,
"d": 2,
"e": 1,
"f": 4,
"g": 2,
"h": 4,
"i": 1,
"j": 8,
"k": 5,
"l": 1,
"m": 3,
"n": 1,
"o": 1,
"p": 3,
"q": 10,
"r": 1,
"s": 1,
"t": 1,
"u": 1,
"v": 4,
"w": 4,
"x": 8,
"y": 4,
"z": 10,
}
self.assertEqual(transform(legacy_data), data)