Files
Hippolyzer/pyogp/lib/base/tests/test_events.py
2009-03-03 01:40:52 +00:00

48 lines
939 B
Python

"""
@file test_events.py
@date 2009-2-27
Contributors can be viewed at:
http://svn.secondlife.com/svn/linden/projects/2008/pyogp/CONTRIBUTORS.txt
$LicenseInfo:firstyear=2008&license=apachev2$
Copyright 2008, Linden Research, Inc.
Licensed under the Apache License, Version 2.0 (the "License").
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
or in
http://svn.secondlife.com/svn/linden/projects/2008/pyogp/LICENSE.txt
$/LicenseInfo$
"""
# standard python libs
import unittest
# pyogp
from pyogp.lib.base.utilities.events import Event
# pyogp tests
import pyogp.lib.base.tests.config
class TestEvents(unittest.TestCase):
def setUp(self):
pass
def tearDown(self):
pass
def test_event(self):
event = Event()
def test_suite():
from unittest import TestSuite, makeSuite
suite = TestSuite()
suite.addTest(makeSuite(TestEvents))
return suite