mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-28 05:51:24 -05:00
15 lines
277 B
Python
15 lines
277 B
Python
# Copyright (c) 2013-2014, spline
|
|
###
|
|
|
|
from supybot.test import *
|
|
import os
|
|
|
|
class TweetyTestCase(PluginTestCase):
|
|
plugins = ('Tweety',)
|
|
|
|
def testTweety(self):
|
|
t = os.environ.get('test')
|
|
print t
|
|
|
|
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
|