(simple_box)
| 471 | |
| 472 | |
| 473 | def test_set_ops(simple_box): |
| 474 | |
| 475 | assert (simple_box.faces(">Z") | simple_box.faces("<Z")).size() == 2 |
| 476 | assert (simple_box.faces(">Z") & simple_box.faces("<Z")).size() == 0 |
| 477 | assert (simple_box.faces("|Z") % simple_box.faces("<Z")).size() == 1 |
| 478 | |
| 479 | |
| 480 | def test_start_end(): |