File: test_covalent_radius.py

package info (click to toggle)
python-periodictable 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,068 kB
  • sloc: python: 13,338; makefile: 103; sh: 92; javascript: 7
file content (9 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
from periodictable import elements

def test():
    #assert elements.Po.covalent_radius == 1.53
    assert elements.Po.covalent_radius == 1.40
    assert elements.Po.covalent_radius_uncertainty == 0.04
    assert elements.Po.covalent_radius_units == 'angstrom'

if __name__ == "__main__": test()