mirror of
https://github.com/gryf/pygtktalog.git
synced 2025-12-17 11:30:19 +01:00
18 lines
421 B
Python
18 lines
421 B
Python
"""
|
|
Project: pyGTKtalog
|
|
Description: This is simple dummy test for... testing purposes :)
|
|
Type: test
|
|
Author: Roman 'gryf' Dobosz, gryf73@gmail.com
|
|
Created: 2008-12-15
|
|
"""
|
|
import unittest
|
|
|
|
class TestDummy(unittest.TestCase):
|
|
"""Fake test class"""
|
|
def test_dummy_method(self):
|
|
"""Test simple assertion"""
|
|
self.assertTrue(True)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|