(s3, f)
| 925 | |
| 926 | |
| 927 | def test_add(s3, f): |
| 928 | |
| 929 | # we do not clean, so adding will increase the number of edges |
| 930 | assert len(s3.map(lambda x: f).add().reset().val().Edges()) == 10 |
| 931 | |
| 932 | # check that adding without selection does not raise |
| 933 | s3.add() |
| 934 | |
| 935 | |
| 936 | def test_subtract(s3, f): |