This commit is contained in:
Javi Rueda 2021-02-23 13:32:30 +01:00
commit 5cc537a3df

View file

@ -113,6 +113,19 @@ public class LbryUriTest {
assertEquals(expectedForChannel, obtained);
}
@Test
public void lbryToTvString() {
LbryUri obtained = new LbryUri();
try {
obtained = LbryUri.parse("lbry://@lbry#3f/lbryturns4#6",false);
} catch (LbryUriException e) {
e.printStackTrace();
}
assertEquals("https://lbry.tv/@lbry:3f/lbryturns4:6", obtained.toTvString());
}
@NotNull
private LbryUri sinthesizeExpected() {
LbryUri expectedForChannel = new LbryUri();