3107
3107
scenarios = [('location', {'matcher': config.LocationMatcher}),
3108
3108
('id', {'matcher': config.NameMatcher}),]
3113
3115
def test_no_matches_for_empty_stores(self):
3115
3117
store._load_from_string('')
3116
3118
matcher = self.matcher(store, '/bar')
3117
3119
self.assertEquals([], list(matcher.get_sections()))
3119
3121
def test_build_doesnt_load_store(self):
3121
3123
matcher = self.matcher(store, '/bar')
3122
3124
self.assertFalse(store.is_loaded())