Changeset 402

Show
Ignore:
Timestamp:
09/18/07 17:36:27 (1 year ago)
Author:
bjourne
Message:

Test for the PixbufDraw* classes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • pygtkimageview/tests/test_module.py

    r400 r402  
    230230    except NotImplementedError: 
    231231        assert True 
    232      
    233      
    234      
     232 
     233def test_pixbuf_draw_opts(): 
     234    ''' 
     235    Ensure that the PixbufDrawOpts class is present. 
     236    ''' 
     237    assert hasattr(gtkimageview, 'PixbufDrawOpts') 
     238 
     239def test_pixbuf_draw_cache(): 
     240    ''' 
     241    Ensure that the PixbufDrawCache class is present. 
     242    ''' 
     243    assert hasattr(gtkimageview, 'PixbufDrawCache') 
     244     
     245     
     246