@Test
public void testScopeInHistoricalStatus() throws Exception {
repo = Configuration.get().find("status-1");
HgStatusCommand cmd = new HgStatusCommand(repo);
cmd.base(3).revision(8).all();
cmd.match(new PathGlobMatcher("dir/*"));
StatusCollector sc = new StatusCollector();
cmd.execute(sc);
assertTrue(sc.getErrors().isEmpty());
final Path file3 = Path.create("dir/file3");
final Path file4 = Path.create("dir/file4");