* @throws Exception If a problem occurs.
*/
@Test
public void fetchesSingleAsset() throws Exception {
final ReleaseAssets assets = release().assets();
final ReleaseAsset asset = assets.upload(
"testGet".getBytes(), "text/plain", "get.txt"
);
MatcherAssert.assertThat(
assets.get(asset.number()),
Matchers.is(asset)