Fix types::System enum
Unix had incorrectly assigned the value 1 instead of 3
This commit is contained in:
parent
e747fcd779
commit
49e506c13c
1 changed files with 15 additions and 4 deletions
19
src/types.rs
19
src/types.rs
|
@ -2,12 +2,11 @@
|
||||||
|
|
||||||
use time;
|
use time;
|
||||||
|
|
||||||
|
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||||
#[derive(Clone, Copy, Debug)]
|
|
||||||
pub enum System
|
pub enum System
|
||||||
{
|
{
|
||||||
Dos,
|
Dos = 0,
|
||||||
Unix,
|
Unix = 3,
|
||||||
Unknown,
|
Unknown,
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
__Nonexhaustive,
|
__Nonexhaustive,
|
||||||
|
@ -59,3 +58,15 @@ pub struct ZipFileData
|
||||||
/// External file attributes
|
/// External file attributes
|
||||||
pub external_attributes: u32,
|
pub external_attributes: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
#[test]
|
||||||
|
fn system() {
|
||||||
|
use super::System;
|
||||||
|
assert_eq!(System::Dos as u16, 0u16);
|
||||||
|
assert_eq!(System::Unix as u16, 3u16);
|
||||||
|
assert_eq!(System::from_u8(0), System::Dos);
|
||||||
|
assert_eq!(System::from_u8(3), System::Unix);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue