assertIterableEquals(keys.subList(16, 17), partitions);
}
@Test
public void testKeyRange() throws Exception {
Marker october_25_2012 = new Marker.Builder().add("year", 2012).add("month", 10).add("day", 25).build();
Marker october_24_2013 = new Marker.Builder().add("year", 2013).add("month", 10).add("day", 24).build();
Iterable <StorageKey> partitions = new FileSystemPartitionIterator(
fileSystem, testDirectory, strategy, unbounded.from(october_25_2012).to(october_24_2013));
assertIterableEquals(keys.subList(5, 17), partitions);
}