Anders and Briegel in Python
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_circuit_model_fails.py 231B

пре 7 година
1234567891011121314
  1. from abp import qi
  2. def test_dumbness():
  3. a = qi.CircuitModel(1)
  4. b = qi.CircuitModel(1)
  5. assert a == b
  6. a.act_local_rotation(0, qi.px)
  7. assert not (a == b)
  8. a.act_local_rotation(0, qi.px)
  9. assert (a == b)