Skip to content

Commit

Permalink
Add test demonstrating #469
Browse files Browse the repository at this point in the history
  • Loading branch information
James McKinney committed Jan 23, 2016
1 parent f2b9922 commit bcd30a6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ def test_from_csv_no_inference(self):
def test_from_csv_empty_file(self):
table.Table.from_csv(six.StringIO('\n\n'))

def test_from_csv_dev_null(self):
with open('/dev/null', 'r') as f:
table.Table.from_csv(f)

def test_to_csv(self):
raise SkipTest
with open('examples/testfixed_converted.csv', 'r') as f:
Expand Down

0 comments on commit bcd30a6

Please sign in to comment.