#
# csv2.txt - initial open/close tests
#

csvopen 1 data/csv1.txt r    # should open OK
csvclose 1                   # should close OK

csvopen 1 data/csv.txt r     # should not find the file
csvclose 1                   # should close OK

csvopen 1 data/csv1.txt x    # should fail with bad mode 
csvclose 1                   # should close OK

csvopen 1 data/csv1.txt r    # should open OK
csvopen 2 testcsv.c     r    # should open OK 
csvclose 1                   # should close OK
csvclose 2                   # should close OK

csvopen 3 data/csv2.output w # should create a file
csvclose 3                   # should close OK

csvclose 4                   # should fail
 
#
# Should throw 3 errors
#
