mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-20 07:34:24 +01:00
They're almost entirely autogenerated, and we use symlinks into the
top directory to reduce replication.
They can't be under pyln.spec.message, because a package can't also
be a namespace.
We also add fulltext and desc fields, and exclude our "gen" files from
flake8, since the spec quotes contain weird whitespace.
Changelog-Added: Python: pyln.spec.bolt{1,2,4,7} packages.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
15 lines
414 B
Python
15 lines
414 B
Python
#! /usr/bin/python3
|
|
from pyln.proto.message import MessageNamespace
|
|
import pyln.spec.bolt7 as bolt7
|
|
|
|
|
|
# FIXME: more tests
|
|
def test_bolt_07_csv():
|
|
MessageNamespace(bolt7.csv)
|
|
|
|
|
|
def test_bolt_07_subtypes():
|
|
for t in ['{timestamp_node_id_1=1,timestamp_node_id_2=2}']:
|
|
vals, _ = bolt7.channel_update_timestamps.val_from_str(t)
|
|
assert bolt7.channel_update_timestamps.val_to_str(vals, None) == t
|