Skip to content

Commit

Permalink
Added even more tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicahGale committed Aug 12, 2024
1 parent e0b7b95 commit 98a4ddc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_material.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,9 @@ def test_isotope_str(self):
((92, 235, 1, "80c"), 92, 235, 1, "80c"),
((Element(92), 235, 1, "80c"), 92, 235, 1, "80c"),
((Element(92), 235), 92, 235, None, ""),
(("U", 235), 92, 235, None, ""),
((92, 235), 92, 235, None, ""),
(("uRanium", 235), 92, 235, None, ""),
((Element(92),), 92, 0, None, ""),
],
)
Expand Down

0 comments on commit 98a4ddc

Please sign in to comment.