-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b812be2
commit f74b385
Showing
7 changed files
with
50 additions
and
77 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 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 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 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 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 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,22 @@ | ||
"""Testing the standard attributes""" | ||
import pathlib | ||
import unittest | ||
|
||
from h5rdmtoolbox.conventions import references | ||
|
||
__this_dir__ = pathlib.Path(__file__).parent | ||
|
||
bibtext = """@ONLINE{hdf5group, | ||
author = {{The HDF Group}}, | ||
title = "{Hierarchical Data Format, version 5}", | ||
year = {1997-NNNN}, | ||
note = {https://www.hdfgroup.org/HDF5/}, | ||
addendum = "(accessed: 25.09.2023)", | ||
}""" | ||
|
||
|
||
class TestReferences(unittest.TestCase): | ||
|
||
def test_url(self): | ||
self.assertFalse(references.validate_url(123)) | ||
|
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