~brandon-rhodes/pyephem/python-3

« back to all changes in this revision

Viewing changes to src/ephem/tests/all.py

  • Committer: Brandon Craig Rhodes
  • Date: 2009-04-30 19:43:18 UTC
  • Revision ID: brandon@rhodesmill.org-20090430194318-r6b7yt25jspcyjk8
Merged changes 421 and 422 from the main "pyephem" branch, with one or
two tweaks to make them compatible with Python 3.0.  This brings over
the new next_pass() method for finding when a satellite next appears.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Test everything.  Until nose gets ported to Python 3.0.
2
2
 
3
3
import unittest
 
4
from ephem.tests import test_satellite
4
5
from ephem.tests.launchpad_236872 import convergence_suite
5
6
from ephem.tests.launchpad_244811 import next_rising_suite
6
7
from ephem.tests.test_angles import angle_suite
50
51
            jpl_suite,
51
52
            rst_suite,
52
53
            dtl.loadTestsFromTestCase(usno_equinoxes_suite),
 
54
            dtl.loadTestsFromTestCase(test_satellite.Case),
53
55
            ])
54
56
    unittest.TextTestRunner(verbosity=2).run(suite)