Anders and Briegel in Python
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

test_json.py 387B

il y a 8 ans
12345678910111213141516171819202122
  1. from abp import GraphState
  2. from abp import clifford
  3. from demograph import demograph
  4. import time
  5. import json
  6. def test_json_basic():
  7. """ Test that we can export to JSON """
  8. g = demograph()
  9. js = g.to_json()
  10. assert "adj" in js
  11. assert "node" in js
  12. e = GraphState()
  13. #TODO
  14. def _test_to_json():
  15. """ Nah """
  16. assert e != g
  17. e.from_json(js)
  18. assert e == g