#!/usr/bin/env python
# -*- coding: utf-8 -*-

import unittest
import ephem

# See whether asking for the rising-time of Mars hangs indefinitely.

class Launchpad236872Tests(unittest.TestCase):
    def runTest(self):
        mars = ephem.Mars()
        boston = ephem.city('Boston')
        boston.date = ephem.Date('2008/5/29 15:59:16')
        boston.next_rising(mars)
