Add Deprecated test classes, for ones that shouldn't be run by default these days

This commit is contained in:
Daniel Oaks
2016-11-30 01:19:19 +10:00
parent da25b59380
commit ca8b3cf625
4 changed files with 22 additions and 15 deletions

View File

@ -4,8 +4,10 @@ import enum
class Specifications(enum.Enum):
RFC1459 = 'RFC1459'
RFC2812 = 'RFC2812'
RFCDeprecated = 'RFC-deprecated'
IRC301 = 'IRCv3.1'
IRC302 = 'IRCv3.2'
IRC302Deprecated = 'IRCv3.2-deprecated'
@classmethod
def of_name(cls, name):