diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-10-24 00:38:51 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2020-10-24 00:38:51 +0200 |
| commit | 4a77b0781fbde50ad2822ac47fe96f4dfece6f42 (patch) | |
| tree | 20b8733d7dc77f9c48e61aa1dd8555b1e42fa03e /tests/test_ui.py | |
| parent | fix comment (diff) | |
| parent | Add CVF provider (diff) | |
| download | paper2remarkable-4a77b0781fbde50ad2822ac47fe96f4dfece6f42.tar.gz paper2remarkable-4a77b0781fbde50ad2822ac47fe96f4dfece6f42.zip | |
Merge branch 'feature/cvf'
Diffstat (limited to 'tests/test_ui.py')
| -rw-r--r-- | tests/test_ui.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_ui.py b/tests/test_ui.py index 97ec44d..835f594 100644 --- a/tests/test_ui.py +++ b/tests/test_ui.py @@ -20,6 +20,7 @@ from paper2remarkable.providers import ( ACM, Arxiv, CiteSeerX, + CVF, HTML, JMLR, LocalFile, @@ -174,6 +175,11 @@ class TestUI(unittest.TestCase): "https://www.nature.com/articles/d41586-020-00176-4", "https://www.nature.com/articles/d41586-020-00176-4", ), + ( + CVF, + "https://openaccess.thecvf.com/content_cvpr_2018/html/Cheng_Dual_Skipping_Networks_CVPR_2018_paper.html", + "https://openaccess.thecvf.com/content_cvpr_2018/html/Cheng_Dual_Skipping_Networks_CVPR_2018_paper.html", + ), ] for exp_prov, url, exp_url in tests: prov, new_url, jar = choose_provider(url) |
