A library that computes the ephemerides.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
581 B

  1. import unittest
  2. from kosmorrolib import model, core
  3. from kosmorrolib.enum import ObjectIdentifier
  4. class DataTestCase(unittest.TestCase):
  5. def test_object_radius_must_be_set_to_get_apparent_radius(self):
  6. o = model.Planet(ObjectIdentifier.SATURN, "SATURN")
  7. with self.assertRaises(ValueError) as context:
  8. o.get_apparent_radius(
  9. core.get_timescale().now(), core.get_skf_objects()["earth"]
  10. )
  11. self.assertEqual(("Missing radius for SATURN",), context.exception.args)
  12. if __name__ == "__main__":
  13. unittest.main()