Coinpan: Skip tests on Python 2.

master
Valentin Lorentz 2014-03-16 22:24:25 +00:00
parent 19b3234b6b
commit 5d1edf651a
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,4 @@
# -*- coding: utf8 -*-
###
# Copyright (c) 2013, Valentin Lorentz
# All rights reserved.
@ -28,6 +29,7 @@
###
import sys
from supybot.test import *
class CoinpanTestCase(ChannelPluginTestCase):
@ -54,5 +56,8 @@ class CoinpanTestCase(ChannelPluginTestCase):
self.assertSnarfResponse('foo CION bar', 'foo P∀N bar')
self.assertSnarfResponse('foo cion bar', 'foo pɐn bar')
if sys.version_info[0] == 2:
def testCoinpan(self):
print('Skipped')
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: