From a2008f644a1b633cfcb6c1e65a06137e9eeaa660 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Wed, 24 Jun 2015 16:11:14 -0400 Subject: [PATCH] TEST: Remove unused test class. --- tests/test_assets.py | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/tests/test_assets.py b/tests/test_assets.py index 7d786d3b..f05f5bc7 100644 --- a/tests/test_assets.py +++ b/tests/test_assets.py @@ -40,30 +40,6 @@ from zipline.errors import ( ) -class FakeTable(object): - def __init__(self, name, count, dt, fuzzy_str): - self.name = name - self.count = count - self.dt = dt - self.fuzzy_str = fuzzy_str - self.df = pd.DataFrame.from_records( - [ - { - 'sid': i, - 'file_name': 'TEST%s%s' % (self.fuzzy_str, i), - 'company_name': self.name + str(i), - 'start_date_nano': pd.Timestamp(dt, tz='UTC').value, - 'end_date_nano': pd.Timestamp(dt, tz='UTC').value, - 'exchange': self.name, - } - for i in range(1, self.count + 1) - ] - ) - - def read(self, *args, **kwargs): - return self.df.to_records() - - def build_lookup_generic_cases(): """ Generate test cases for AssetFinder test_lookup_generic.