diff options
| author | Tres Seaver <tseaver@palladion.com> | 2010-04-28 16:48:14 +0000 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2010-04-28 16:48:14 +0000 |
| commit | 4356e8d2e261a060b65fedd47d45f455bca5a05c (patch) | |
| tree | bb14e15835abc23f6e6e2c5dfb8fd8c75cb5b568 /src/zope/interface/tests/idummy.py | |
| parent | 89cb117c4beb2e86825e89e6cf7fb2769bd5785b (diff) | |
| download | zope-interface-4356e8d2e261a060b65fedd47d45f455bca5a05c.tar.gz | |
Better unit tests, to date.
Diffstat (limited to 'src/zope/interface/tests/idummy.py')
| -rw-r--r-- | src/zope/interface/tests/idummy.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/zope/interface/tests/idummy.py b/src/zope/interface/tests/idummy.py new file mode 100644 index 0000000..1e34fe0 --- /dev/null +++ b/src/zope/interface/tests/idummy.py @@ -0,0 +1,23 @@ +############################################################################## +# +# Copyright (c) 2001, 2002 Zope Foundation and Contributors. +# All Rights Reserved. +# +# This software is subject to the provisions of the Zope Public License, +# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. +# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED +# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS +# FOR A PARTICULAR PURPOSE. +# +############################################################################## +""" Interface describing API of zope.interface.tests.dummy test module +""" +from zope.interface import Interface + +class IDummyModule(Interface): + """ Dummy interface for unit tests. + """ + def bar(baz): + """ Just a note. + """ |
