Changeset 40987 for branches/eam_branches/ipp-20191011
- Timestamp:
- Oct 28, 2019, 3:49:13 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20191011/Nebulous-Server/t/16_mounts.t
r24356 r40987 35 35 = @{$mounts->[0]}; 36 36 37 is($row{total}, 100000000000 );38 is($row{used}, 100000000 );39 is($row{vol_id}, 1 );40 is($row{name}, "node01" );41 is($row{host}, "node01" );42 is($row{allocate}, 1 );43 is($row{available}, 1 );44 is($row{xattr}, 0 );37 is($row{total}, 100000000000, "total bytes"); 38 is($row{used}, 100000000, "used bytes"); 39 is($row{vol_id}, 1, "vol id"); 40 is($row{name}, "node01", "name"); 41 is($row{host}, "node01", "host"); 42 is($row{allocate}, 1, "is allocated"); 43 is($row{available}, 1, "is available"); 44 is($row{xattr}, 0, "has no xattr"); 45 45 46 46 # 2nd row … … 48 48 = @{$mounts->[1]}; 49 49 50 is($row{total}, 100000000000 );51 is($row{used}, 1000000000 );52 is($row{vol_id}, 2 );53 is($row{name}, "node02" );54 is($row{host}, "node02" );55 is($row{allocate}, 1 );56 is($row{available}, 1 );57 is($row{xattr}, 0 );50 is($row{total}, 100000000000, "total bytes"); 51 is($row{used}, 1000000000, "used bytes"); 52 is($row{vol_id}, 2, "vol id"); 53 is($row{name}, "node02", "name"); 54 is($row{host}, "node02", "host"); 55 is($row{allocate}, 1, "is allocated"); 56 is($row{available}, 1, "is available"); 57 is($row{xattr}, 0, "has no xattr"); 58 58 } 59 59
Note:
See TracChangeset
for help on using the changeset viewer.
