We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e7392e commit 790537aCopy full SHA for 790537a
1 file changed
rmgpy/rmg/inputTest.py
@@ -94,6 +94,19 @@ def test_importing_database_reaction_libraries_from_true_tuple(self):
94
self.assertTrue(rmg.reaction_libraries[0][1])
95
96
97
+class TestRMSYAMLWriterDisable(unittest.TestCase):
98
+ """
99
+ Default behavior of RMG is to enable so test ability to disable
100
101
+
102
+ def test_disable_rms_yaml_writer(self):
103
104
+ generateRMSEachIter = False in input should set the corresponding property in RMG instance
105
106
+ global rmg
107
+ self.assertFalse(rmg.generate_rms_each_iter)
108
109
110
class TestInputMLEstimator(unittest.TestCase):
111
"""
112
Contains unit tests rmgpy.rmg.input.mlEstimator
0 commit comments