We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb1d55 commit 43faea5Copy full SHA for 43faea5
1 file changed
rebound/tests/test_integrator.py
@@ -5,6 +5,13 @@
5
import ctypes
6
7
class TestIntegratorDoc(unittest.TestCase):
8
+ def test_field_doc(self):
9
+ sim = rebound.Simulation()
10
+ sim.integrator = "whfast"
11
+ doc = sim.integrator.safe_mode.__doc__
12
+ lines = len(doc.split("\n"))
13
+ self.assertGreater(lines, 4)
14
+
15
def test_integrator_doc(self):
16
""" Make sure documentation is available for each integrator and it renders ok """
17
clibrebound = rebound.clibrebound
0 commit comments