1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- Encoding: UTF-8 -*-
###
# Copyright (c) 2010, Elián Hanisch
# All rights reserved.
#
#
###
from supybot.test import *
class UrldbTestCase(PluginTestCase):
plugins = ('Urldb',)
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:
|