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.
 
 

20 lines
525 B

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