LAL 7.7.0.1-eeff03c
test_rate.py
Go to the documentation of this file.
1import doctest
2
3try:
4 from igwn_ligolw import ligolw # noqa: F401
5except ImportError as exc:
6 import warnings
7 import sys
8 warnings.warn(str(exc))
9 sys.exit(77)
10
11from lal import rate
12
13if __name__ == '__main__':
14 doctest.testmod(rate)