summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-04-05 03:15:14 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-04-05 03:15:14 -0700
commitca56fbe48a91390527c72199f04cd34ad5b8e754 (patch)
treed8058a97cfd207dbafb81837caad8c55af1b6eab
parent3c6b752519086fad0d4f1fb5f8dd3f9eb317ba44 (diff)
downloadpython-cheetah-ca56fbe48a91390527c72199f04cd34ad5b8e754.tar.gz
Kill this dead useless test file
Signed-off-by: R. Tyler Ballance <tyler@slide.com>
-rw-r--r--src/Tests/FileRefresh.py55
1 files changed, 0 insertions, 55 deletions
diff --git a/src/Tests/FileRefresh.py b/src/Tests/FileRefresh.py
deleted file mode 100644
index 4beb3e7..0000000
--- a/src/Tests/FileRefresh.py
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/env python
-# $Id: FileRefresh.py,v 1.6 2002/10/01 17:52:03 tavis_rudd Exp $
-"""Tests to make sure that the file-update-monitoring code is working properly
-
-THIS TEST MODULE IS JUST A SHELL AT THE MOMENT. Feel like filling it in??
-
-Meta-Data
-================================================================================
-Author: Tavis Rudd <tavis@damnsimple.com>,
-Version: $Revision: 1.6 $
-Start Date: 2001/10/01
-Last Revision Date: $Date: 2002/10/01 17:52:03 $
-"""
-__author__ = "Tavis Rudd <tavis@damnsimple.com>"
-__revision__ = "$Revision: 1.6 $"[11:-2]
-
-
-##################################################
-## DEPENDENCIES ##
-
-import sys
-import types
-import os
-import os.path
-
-
-import unittest_local_copy as unittest
-from Cheetah.Template import Template
-
-##################################################
-## CONSTANTS & GLOBALS ##
-
-try:
- True,False
-except NameError:
- True, False = (1==1),(1==0)
-
-##################################################
-## TEST DATA FOR USE IN THE TEMPLATES ##
-
-##################################################
-## TEST BASE CLASSES
-
-class TemplateTest(unittest.TestCase):
- pass
-
-##################################################
-## TEST CASE CLASSES
-
-
-##################################################
-## if run from the command line ##
-
-if __name__ == '__main__':
- unittest.main()