151
144
self.assertIs(None, HasLayout(['', 'a', 'b/', 'b/c', 'd/']).match(t))
152
145
mismatch = HasLayout([u'', u'a', u'd/']).match(t)
153
146
self.assertIsNot(None, mismatch)
156
set(("['', 'a', 'b/', 'b/c']", "['', 'a']")),
160
set(("[u'', u'a', u'b/', u'b/c']", "[u'', u'a']")),
148
set(("['', 'a', 'b/', 'b/c']", "['', 'a']")),
164
152
class TestHasPathRelations(TestCaseWithTransport):