Changeset 402
- Timestamp:
- 09/18/07 17:36:27 (1 year ago)
- Files:
-
- pygtkimageview/tests/test_module.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pygtkimageview/tests/test_module.py
r400 r402 230 230 except NotImplementedError: 231 231 assert True 232 233 234 232 233 def test_pixbuf_draw_opts(): 234 ''' 235 Ensure that the PixbufDrawOpts class is present. 236 ''' 237 assert hasattr(gtkimageview, 'PixbufDrawOpts') 238 239 def test_pixbuf_draw_cache(): 240 ''' 241 Ensure that the PixbufDrawCache class is present. 242 ''' 243 assert hasattr(gtkimageview, 'PixbufDrawCache') 244 245 246
