mirror of
https://github.com/romanz/amodem.git
synced 2026-02-07 01:18:02 +08:00
7 lines
147 B
Python
7 lines
147 B
Python
from amodem import config
|
|
|
|
|
|
def test_bitrates():
|
|
for rate, cfg in sorted(config.bitrates.items()):
|
|
assert rate * 1000 == cfg.modem_bps
|