* @throws Exception if some problem inside
*/
@Test
public void getBlob() throws Exception {
final Blobs blobs = repo().git().blobs();
final Blob created = blobs.create("content", "base64");
MatcherAssert.assertThat(
blobs.get(created.sha()),
Matchers.notNullValue()
);
}