Changeset 410ad69


Ignore:
Timestamp:
Jan 22, 2012, 1:14:17 AM (12 years ago)
Author:
Jessica B. Hamrick <jhamrick@…>
Branches:
no-cups
Children:
28b2e89
Parents:
2834b9a
git-author:
Jessica B. Hamrick <jhamrick@…> (01/22/12 01:14:17)
git-committer:
Jessica B. Hamrick <jhamrick@…> (01/22/12 01:14:17)
Message:

Change unimplemented printer tests to raie errors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • server/lib/gutenbach_test/server/printer.py

    r5ffffe0 r410ad69  
    150150
    151151    def testPrintJob(self):
    152         pass
     152        raise NotImplementedError
    153153
    154154    def testValidateJob(self):
    155         pass
     155        raise NotImplementedError
    156156
    157157    def testGetJobs(self):
    158         pass
     158        raise NotImplementedError
    159159
    160160    def testPrintUri(self):
    161         pass
     161        raise NotImplementedError
    162162
    163163    def testCreateJob(self):
     
    228228
    229229    def testGetPrinterAttributes(self):
    230         pass
     230        raise NotImplementedError
    231231
    232232    def testSetPrinterAttributes(self):
    233         pass
     233        raise NotImplementedError
    234234
    235235    def testCancelJob(self):
    236         pass
     236        raise NotImplementedError
    237237
    238238    def testSendDocument(self):
    239         pass
     239        raise NotImplementedError
    240240
    241241    def testSendUri(self):
    242         pass
     242        raise NotImplementedError
    243243
    244244    def testGetJobAttributes(self):
    245         pass
     245        raise NotImplementedError
    246246
    247247    def testSetJobAttributes(self):
    248         pass
     248        raise NotImplementedError
    249249
    250250    def testRestartJob(self):
    251         pass
     251        raise NotImplementedError
    252252
    253253    def testPromoteJob(self):
    254         pass
     254        raise NotImplementedError
    255255
    256256if __name__ == "__main__":
Note: See TracChangeset for help on using the changeset viewer.