mockd 0.5.3

Fake data generator library with 130+ functions
Documentation
//!
//! Provides 3 functions to return mock hipster data.
//!
//! # Examples
//!
//! ```rust
//! use mockd::hipster;
//!
//!     let data = hipster::word(); // word: fingerstache
//!     let data = hipster::sentence(12); // sentence: Itaque aliquid id ex repudiandae adipisci quibusdam excepturi deleniti qui alias animi.
//!     let data = hipster::paragraph(3, 4, 40, " ".to_string()); // paragraph: Voluptas minima delectus voluptatibus earum rerum accusamus consequatur sunt....
//! ```
//! # Feature
//!
//! Requires the "hipster" feature.
//!

use crate::misc;
use crate::words;

pub(crate) mod data;

/// Generate a random hipster word from the word dictionary.
///
/// # Example
///
/// ```rust
/// let word = mockd::hipster::word();
///
/// println!("Hipster word: {}", word);
/// ```
///
/// # Feature
///
/// Requires the "hipster" feature.
///
pub fn word() -> String {
    misc::random_data(data::WORD).to_string()
}

/// Generate a random sentence containing the given number of words.
///
/// # Example
///
/// ```rust
/// let sentence = mockd::hipster::sentence(5);
///
/// println!("Hipster sentence: {}", sentence);
/// ```
///
/// # Feature
///
/// Requires the "hipster" feature.
///
pub fn sentence(word_count: usize) -> String {
    words::sentence(word_count)
}

/// Generate a random paragraph containing a number of sentences of words.
///
/// # Example
///
/// ```rust
/// let paragraph = mockd::hipster::paragraph(1,5,5,". ".to_string());
///
/// println!("Hipster word: {}", paragraph);
/// ```
///
/// # Feature
///
/// Requires the "hipster" feature.
///
pub fn paragraph(
    count: usize,
    sentence_count: usize,
    word_count: usize,
    separator: String,
) -> String {
    words::paragraph(count, sentence_count, word_count, separator)
}

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

    #[test]
    fn word() {
        exec_mes("hipster::word", hipster::word);
    }

    #[test]
    fn sentence() {
        exec_mes("hipster::sentence", || hipster::sentence(12));
    }

    #[test]
    fn paragraph() {
        let data1 = hipster::paragraph(3, 4, 40, " ".to_string());
        let data2 = hipster::paragraph(3, 4, 40, " ".to_string());
        assert_ne!(data1, data2);
    }
}