Skip to content

Commit

Permalink
really need to use testing branches..
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Aug 16, 2011
1 parent f01d65c commit 19ee199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
2 changes: 1 addition & 1 deletion tablib/core.py
Expand Up @@ -14,7 +14,7 @@

from tablib import formats

from tablib.compat import OrderedDict
from tablib.compat import OrderedDict, unicode


__title__ = 'tablib'
Expand Down
26 changes: 1 addition & 25 deletions test_tablib.py
Expand Up @@ -7,7 +7,7 @@
import sys

import tablib
from tablib.compat import markup
from tablib.compat import markup, unicode



Expand Down Expand Up @@ -649,30 +649,6 @@ def test_csv_column_sort(self):

self.assertEquals(self.founders[orig_target_header], data[target_header])

def test_xls_import_set(self):
"""Generate and import XLS set serialization."""
data.append(self.john)
data.append(self.george)
data.headers = self.headers

_xls = data.xls

data.xls = _xls

self.assertEqual(_xls, data.xls)

def test_xls_import_book(self):
"""Generate and import XLS book serialization."""
data.append(self.john)
data.append(self.george)
data.headers = self.headers

book.add_sheet(data)
_xls = book.xls

book.xls = _xls

self.assertEqual(_xls, book.xls)


if __name__ == '__main__':
Expand Down

0 comments on commit 19ee199

Please sign in to comment.