(a, b)
| 16 | |
| 17 | |
| 18 | def equal_rrsets(a, b): |
| 19 | # return True iff. a and b have the same rrsets regardless of order |
| 20 | if len(a) != len(b): |
| 21 | return False |
| 22 | for rrset in a: |
| 23 | if not rrset in b: |
| 24 | return False |
| 25 | return True |
| 26 | |
| 27 | |
| 28 | def test_name_ttl_rdclass_forced(): |
no outgoing calls
no test coverage detected
searching dependent graphs…