-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changing citation to download_citation (#162)
Co-authored-by: John Waller <ftw712@ku.dk>
- Loading branch information
Showing
6 changed files
with
44 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from pygbif import occurrences as occ | ||
import vcr | ||
|
||
@vcr.use_cassette('test/vcr_cassettes/test-occurrences-download_citation.yaml') | ||
def test_download_citation(): | ||
res=occ.download_citation("0235283-220831081235567") | ||
assert "str" == res.__class__.__name__ | ||
"GBIF.org (2 January 2023) GBIF Occurrence Download https://doi.org/10.15468/dl.29wbtx" == res | ||
|
||
def test_download_citation_failswell(): | ||
try: | ||
occ.download_citation("dog") | ||
except ValueError as e: | ||
assert str(e) == "key must be a GBIF download key" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters