1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

remove unused test file

This commit is contained in:
Kevin McCarthy
2013-08-19 19:26:56 -10:00
parent 348cc8fdfe
commit 762b761d0c

View File

@@ -1,18 +0,0 @@
# coding=utf-8
import os
import shutil
import unittest
class TestVCR(unittest.TestCase):
fixtures = os.path.join('does', 'not', 'exist')
def tearDown(self):
# Remove the fixtures if they exist
if os.path.exists(self.fixtures):
shutil.rmtree(self.fixtures)
def fixture(self, *names):
'''Return a path to the provided fixture'''
return os.path.join(self.fixtures, *names)