mockd 0.4.53

Fake data generator library with 130+ functions
Documentation
//!
//! Provides 1 function to return random mock image.
//!
//! # Examples
//!
//! ##### image (1 function)
//!
//! ```rust
//! use mockd::image;
//!
//!     let data = image::url(500, 500); // url: https://picsum.photos/500/500
//! ```
//!
//! # Feature
//!
//! Requires the "image" feature.
//!

///
/// Generate a random mock image.
///
/// # inputs
///
/// * width - the width of the image
/// * height - the height of the image
///
/// # Examples
///
/// ##### image (1 function)
///
/// ```rust
///     let data = mockd::image::url(500, 500); // url: https://picsum.photos/500/500
///
/// ```
///
/// # Feature
///
/// Requires the "image" feature.
///
pub fn url(width: i64, height: i64) -> String {
    // url will generate a random Image Based Upon Height And Width. https://picsum.photos
    format!("https://picsum.photos/{width}/{height}")
}

#[cfg(test)]
mod tests {
    use crate::image;

    #[test]
    fn get_an_image() {
        let data = image::url(500, 500); // url: https://picsum.photos/500/500

        assert_eq!("https://picsum.photos/500/500", &data);
    }
}