58511c43b7
Implement cron job for review reminder
14 lines
332 B
Java
14 lines
332 B
Java
package fr.imirhil.april.hebdobot.pastebin;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class PastebinClientTest {
|
|
private final PastebinClient client = new PastebinClient(
|
|
"b95ea42d539ec9dca02a7da1f5b229c7");
|
|
|
|
@Test
|
|
public void testPaste() throws Exception {
|
|
System.out.println(this.client.paste("ééé", Expiration.MINUTE_10));
|
|
}
|
|
}
|