diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-05-30 16:34:36 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2021-05-30 16:34:36 +0100 |
| commit | 3b524765a8f1a0ac75e60d6c276074211231ad40 (patch) | |
| tree | abed1abf24a782361d52cfe792e158b585bfa14d /tests/test_ui.py | |
| parent | Merge branch 'bugfix/upload_multi' (diff) | |
| parent | Add IACR provider (partially addresses #104) (diff) | |
| download | paper2remarkable-3b524765a8f1a0ac75e60d6c276074211231ad40.tar.gz paper2remarkable-3b524765a8f1a0ac75e60d6c276074211231ad40.zip | |
Merge branch 'feature/provider_iacr'
Diffstat (limited to 'tests/test_ui.py')
| -rw-r--r-- | tests/test_ui.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_ui.py b/tests/test_ui.py index 86a3c8e..6dfdaa6 100644 --- a/tests/test_ui.py +++ b/tests/test_ui.py @@ -23,6 +23,7 @@ from paper2remarkable.providers import ( CiteSeerX, CVF, HTML, + IACR, JMLR, LocalFile, Nature, @@ -114,6 +115,16 @@ class TestUI(unittest.TestCase): "https://publications.aston.ac.uk/id/eprint/38334/1/5th_Artificial_Neural_Networks.pdf", ), ( + IACR, + "https://eprint.iacr.org/1999/011", + "https://eprint.iacr.org/1999/011", + ), + ( + IACR, + "https://eprint.iacr.org/2021/685.pdf", + "https://eprint.iacr.org/2021/685.pdf", + ), + ( JMLR, "https://www.jmlr.org/papers/volume17/14-526/14-526.pdf", "https://www.jmlr.org/papers/volume17/14-526/14-526.pdf", |
