Constructions like: List<String> storyPaths = new StoryFinder().findPaths(codeLocationFromClass(getClass()), "*/.story", "**/*examples.story"); or List<String> storyPaths = new StoryFinder().findPaths(codeLocationFromPath("somePath"), "*/.story", "**/*examples.story"); doesn't work when there are spaces in a path (which are replaced to %20).
Constructions like:
List<String> storyPaths = new StoryFinder().findPaths(codeLocationFromClass(getClass()), "*/.story", "**/*examples.story");
or
List<String> storyPaths = new StoryFinder().findPaths(codeLocationFromPath("somePath"), "*/.story", "**/*examples.story");
doesn't work when there are spaces in a path (which are replaced to %20).
An issue similar to JBEHAVE-389.