Anders and Briegel in Python
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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)