()
| 119 | ) |
| 120 | |
| 121 | def go2(): |
| 122 | r1 = query(["ed", "fred"]) |
| 123 | eq_( |
| 124 | r1.all(), |
| 125 | [ |
| 126 | ("ed", "ed@wood.com"), |
| 127 | ("ed", "ed@bettyboop.com"), |
| 128 | ("ed", "ed@lala.com"), |
| 129 | ("fred", "fred@fred.com"), |
| 130 | ], |
| 131 | ) |
| 132 | |
| 133 | for i in range(5): |
| 134 | fn = random.choice([go1, go2]) |