# HG changeset patch
# User Jeff Hammel <k0scist@gmail.com>
# Date 1504138973 25200
# Node ID e257f0bb12c95c9f94676d4df66833a8dd8b8976
# Parent  14d65b83c2994ad8f4bc3e2aa4f506555a3f119e
remove boilerplate

diff -r 14d65b83c299 -r e257f0bb12c9 tests/test_tvii.py
--- a/tests/test_tvii.py	Wed Aug 30 17:15:00 2017 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,29 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-"""
-unit tests for tvii
-"""
-
-import os
-import sys
-import tempfile
-import unittest
-
-# globals
-here = os.path.dirname(os.path.abspath(__file__))
-
-class tviiUnitTest(unittest.TestCase):
-
-    def test_tvii(self):
-        tf = tempfile.mktemp()
-        try:
-            # pass
-            pass
-        finally:
-            if os.path.exists(tf):
-                os.remove(tf)
-
-if __name__ == '__main__':
-    unittest.main()
-