Skip to content

Commit

Permalink
Remove email address
Browse files Browse the repository at this point in the history
  • Loading branch information
xnx committed Jan 29, 2025
1 parent 2bb2680 commit f92f782
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
long_description_content_type="text/x-rst",
url="https://github.com/xnx/pyqn",
author="Christian Hill",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
Expand Down
7 changes: 1 addition & 6 deletions tests/test_units.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
# test_units.py
#
# Copyright (C) 2012-2016 Christian Hill
#
# Version 1.0
# Unit tests for the Units class.
"""Unit tests of basic functionality for the Units class."""

import unittest
from fractions import Fraction
Expand Down
16 changes: 16 additions & 0 deletions tests/test_userdef_units.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import unittest
from fractions import Fraction
from pyqn.units import Units
from pyqn.dimensions import Dimensions, d_energy


class UserDefinedUnitsCheck(unittest.TestCase):
"""Unit tests for user-defined units."""

def test_dimensionless_units(self):
return
u1 = Units("cm-2.molec-1", dimensionless=("molec",))


if __name__ == "__main__":
unittest.main()

0 comments on commit f92f782

Please sign in to comment.