aboutsummaryrefslogtreecommitdiff
path: root/tests/test_ui.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-03-01 12:36:07 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-03-01 12:36:07 +0000
commit3ec03cc9622278cabed93eba3d0ed14f21c8257c (patch)
treea18b2c000cb5a368533f1c5c64d9b528c1aa2b00 /tests/test_ui.py
parentSimplify example pdf file (diff)
downloadpaper2remarkable-3ec03cc9622278cabed93eba3d0ed14f21c8257c.tar.gz
paper2remarkable-3ec03cc9622278cabed93eba3d0ed14f21c8257c.zip
Add provider for ACLWeb
Diffstat (limited to 'tests/test_ui.py')
-rw-r--r--tests/test_ui.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_ui.py b/tests/test_ui.py
index 5ccfbab..317352f 100644
--- a/tests/test_ui.py
+++ b/tests/test_ui.py
@@ -17,6 +17,7 @@ from paper2remarkable.exceptions import (
UnidentifiedSourceError,
)
from paper2remarkable.providers import (
+ ACL,
ACM,
Arxiv,
CiteSeerX,
@@ -195,6 +196,11 @@ class TestUI(unittest.TestCase):
"https://www.nature.com/articles/s41599-019-0349-z",
"https://www.nature.com/articles/s41599-019-0349-z",
),
+ (
+ ACL,
+ "https://www.aclweb.org/anthology/2020.sigmorphon-1.29v2.pdf",
+ "https://www.aclweb.org/anthology/2020.sigmorphon-1.29v2.pdf",
+ ),
]
for exp_prov, url, exp_url in tests:
prov, new_url, jar = choose_provider(url)