Package gavo :: Package helpers :: Module testhelpers :: Class FakeSimbad
[frames] | no frames]

Class FakeSimbad

source code

object --+
         |
        FakeSimbad

we monkeypatch simbadinterface such that we don't query simbad during tests.

Also, we don't persist cached Simbad responses. It's a bit sad that that functionality therefore doesn't get exercised.

Instance Methods
 
__init__(self, *args, **kwargs)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
query(self, ident) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables
  simbadData = {'Aldebaran': {'RA': 68.98016279, 'dec': 16.50930...
Properties

Inherited from object: __class__

Method Details

__init__(self, *args, **kwargs)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

Class Variable Details

simbadData

Value:
{'Aldebaran': {'RA': 68.98016279,
               'dec': 16.50930235,
               'oname': 'Aldebaran',
               'otype': 'LP?'},
 u'M1': {'RA': 83.63308333,
         'dec': 22.0145,
         'oname': 'M1',
         'otype': 'SNR'},
...