152
146
self.assertIs(None, HasLayout(['', 'a', 'b/', 'b/c', 'd/']).match(t))
153
147
mismatch = HasLayout([u'', u'a', u'd/']).match(t)
154
148
self.assertIsNot(None, mismatch)
157
set(("['', 'a', 'b/', 'b/c']", "['', 'a']")),
161
set(("[u'', u'a', u'b/', u'b/c']", "[u'', u'a']")),
150
set(("['', 'a', 'b/', 'b/c']", "['', 'a']")),
165
154
class TestHasPathRelations(TestCaseWithTransport):