storiesByPath.put(storyPath, new Story(storyPath));
}
// When
StoryMaps storyMaps = new StoryMaps(asList(new StoryMap("filter", new HashSet<Story>(storiesByPath.values()))));
StoryLanes storyLanes = new StoryLanes(storyMaps, new UnderscoredToCapitalized());
// Then
assertThat(storyMaps.toString(), containsString("filter"));
assertThat(storyMaps.getMaps().toString(), containsString("filter"));
assertThat(storyMaps.getMetaFilters(), equalTo(asList("filter")));