*
* @throws Exception if some problem inside
*/
@Test
public void fetchesJsonRepresentation() throws Exception {
final Contents contents = MkContentTest.repo().contents();
final String path = "fake.txt";
final Content content = contents.create(
jsonContent(path, "for json", "json test")
);
MatcherAssert.assertThat(
// @checkstyle MultipleStringLiterals (1 line)
content.json().getString("name"),