> +
> +/**
> + * Tests behavior of {@code ListOptions}
> + */
> +@Test(groups = "unit")
> +public class ListOptionsTest {
> +
> + public void testChangesSince() {
> + Date ifModifiedSince = new Date();
> + ListOptions options = new ListOptions().changesSince(ifModifiedSince);
> + assertEquals(ImmutableList.of(ifModifiedSince.getTime() / 1000 + ""),
> + options.buildQueryParameters().get("changes-since"));
> + }
> +
> + public void testChangesSinceStatic() {
> + Date ifModifiedSince = new Date();
See above comment
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/517/files#r17566173