Skip to content

Commit

Permalink
Minor comments added to molecule/groupTest unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwest committed Jan 25, 2019
1 parent 172d79a commit a15f996
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rmgpy/molecule/groupTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def setUp(self):
A method called before each unit test in this class.
"""
self.bond = GroupBond(None, None, order=[2])
self.orderList = [[1], [2], [3], [1.5], [1,2], [2,1], [2,3], [1,2,3]]
self.orderList = [[1], [2], [3], [1.5], [1,2], [2,1], [2,3], [1,2,3]] # todo : unit tests for vdw

def testGetOrderStr(self):
"""
Expand Down Expand Up @@ -499,6 +499,9 @@ def testApplyActionBreakBond(self):
def testApplyActionFormBond(self):
"""
Test the GroupBond.applyAction() method for a FORM_BOND action.
Tests that forming a bond between things already bonded, raises
an ActionError
"""
action = ['FORM_BOND', '*1', 1, '*2']
for order0 in self.orderList:
Expand Down

0 comments on commit a15f996

Please sign in to comment.