File: test_pgmagick_imagelist.py

package info (click to toggle)
python-pgmagick 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 712 kB
  • sloc: cpp: 3,481; python: 1,618; makefile: 147
file content (11 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
import unittest
from pgmagick import ImageList


class TestImageList(unittest.TestCase):

    def test_noarg(self):
        imgs = ImageList()
        self.assertEqual(type(imgs), ImageList)

unittest.main()