Skip to content

Instantly share code, notes, and snippets.

@littleli
Created February 9, 2014 22:00
Show Gist options
  • Save littleli/8906640 to your computer and use it in GitHub Desktop.
Save littleli/8906640 to your computer and use it in GitHub Desktop.
Hamcrest p0rn
@SuppressWarnings("unchecked")
List<Object> aList = edn.unmarshall("(:one :two 3 4)", List.class);
assertThat(aList, Matchers.<Object>contains(Keyword.newKeyword("one"), Keyword.newKeyword("two"), 3L, 4L));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment