Changeset 6501 for trunk/DataStore/t/03_file_parse.t
- Timestamp:
- Feb 27, 2006, 5:03:34 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/DataStore/t/03_file_parse.t (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/DataStore/t/03_file_parse.t
r6491 r6501 3 3 # Copyright (C) 2006 Joshua Hoblitt 4 4 # 5 # $Id: 03_file_parse.t,v 1. 2 2006-02-25 00:13:36jhoblitt Exp $5 # $Id: 03_file_parse.t,v 1.3 2006-02-28 03:02:12 jhoblitt Exp $ 6 6 7 7 use strict; … … 132 132 is(scalar @$results, 4, "correct number of item returned"); 133 133 134 isa_ok(@$results[0], 'DataStore::File ::Record');134 isa_ok(@$results[0], 'DataStore::File'); 135 135 is(@$results[0]->fileid, 'otis0123456.01', 'correct fileid'); 136 136 is(@$results[0]->bytes, '83002312', 'correct datetime'); … … 138 138 is(@$results[0]->type, 'chip', 'correct type'); 139 139 140 isa_ok(@$results[1], 'DataStore::File ::Record');140 isa_ok(@$results[1], 'DataStore::File'); 141 141 is(@$results[1]->fileid, 'otis0123456.02', 'correct fileid'); 142 142 is(@$results[1]->bytes, '83002312', 'correct datetime'); … … 144 144 is(@$results[1]->type, 'chip', 'correct type'); 145 145 146 isa_ok(@$results[2], 'DataStore::File ::Record');146 isa_ok(@$results[2], 'DataStore::File'); 147 147 is(@$results[2]->fileid, 'otis0123456.03', 'correct fileid'); 148 148 is(@$results[2]->bytes, '83002312', 'correct datetime'); … … 150 150 is(@$results[2]->type, 'chip', 'correct type'); 151 151 152 isa_ok(@$results[3], 'DataStore::File ::Record');152 isa_ok(@$results[3], 'DataStore::File'); 153 153 is(@$results[3]->fileid, 'otis0123456.04', 'correct fileid'); 154 154 is(@$results[3]->bytes, '83002312', 'correct datetime'); … … 175 175 is(scalar @$results, 1, "correct number of item returned"); 176 176 177 isa_ok(@$results[0], 'DataStore::File ::Record');177 isa_ok(@$results[0], 'DataStore::File'); 178 178 is(@$results[0]->fileid, 'otis0123456.01', 'correct fileid'); 179 179 is(@$results[0]->bytes, '83002312', 'correct datetime');
Note:
See TracChangeset
for help on using the changeset viewer.
