eject 0.1.1

A crate to control the tray of your CD drive
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::error::ErrorKind as CrateErrorKind;
use std::io::ErrorKind as StdErrorKind;

#[test]
fn unknown_error_to_std_io_uncategorized() {
    assert_eq!(
        format!("{:?}", StdErrorKind::from(CrateErrorKind::Unknown)),
        "Uncategorized"
    );
}