[go: up one dir, main page]

fakeit 1.3.1

Fake data generator library with 130+ functions
Documentation
use crate::data::files;
use crate::misc;

pub fn mime_type() -> String {
    misc::random_data(files::MIME_TYPE).to_string()
}

pub fn extension() -> String {
    misc::random_data(files::EXTENSION).to_string()
}

#[cfg(test)]
mod tests {
    use crate::file;
    use crate::testify::exec_mes;

    #[test]
    fn mime_type() {
        exec_mes("file::mime_type", || file::mime_type());
    }

    #[test]
    fn extension() {
        exec_mes("file::extension", || file::extension());
    }
}