Skip to content

Commit

Permalink
Check the size of inputs and results
Browse files Browse the repository at this point in the history
  • Loading branch information
keceli committed Oct 26, 2023
1 parent 963406b commit 906fdf8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/python/unit_tests/energy/test_energy.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ def test_aoenergy_pt(self):
pt = simde.AOEnergy()
self.assertIn('Chemical System', pt.inputs())
self.assertIn('AOs', pt.inputs())
self.assertEqual(len(pt.inputs()), 2)
self.assertIn('Energy', pt.results())
self.assertEqual(len(pt.results()), 1)

0 comments on commit 906fdf8

Please sign in to comment.