Marcin Cieślak пре 1 година
committed by GitHub
родитељ
комит
0e509bf691
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 3 додато и 0 уклоњено
  1. +3
    -0
      tests/test_wikicode.py

+ 3
- 0
tests/test_wikicode.py Прегледај датотеку

@@ -23,6 +23,7 @@ Tests for the Wikicode class, which manages a list of nodes.
"""

from functools import partial
import pickle
import re
from types import GeneratorType

@@ -58,6 +59,8 @@ def test_nodes():
assert ["abc", "{{def}}"] == code.nodes
with pytest.raises(ValueError):
code.__setattr__("nodes", object)
P = pickle.dumps(code)
pickle.loads(P)


def test_get():


Loading…
Откажи
Сачувај