build_script 0.2.0

A wrapper for build.rs instructions
Documentation
//! This contains the [`Prefix`](Prefix) enum.
use std::fmt;

/// The prefix. Usually [`Cargo`](Self::Cargo).
#[derive(Debug, Clone, Ord, PartialOrd, Eq, PartialEq, Hash)]
pub enum Prefix {
    /// The cargo prefix. 99% of the time this is used.
    Cargo,

    /// Other, custom prefixes.
    Custom(String),
}

impl Default for Prefix {
    /// The default prefix is [`Cargo`](Self::Cargo).
    fn default() -> Self {
        Self::Cargo
    }
}

impl fmt::Display for Prefix {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let prefix = match self {
            Self::Cargo => "cargo",
            Self::Custom(prefix) => prefix,
        };

        prefix.fmt(f)
    }
}

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

    #[test]
    fn test_default() {
        let prefix = Prefix::default();
        assert!(matches!(prefix, Prefix::Cargo))
    }

    #[test]
    fn test_display_cargo() {
        let prefix = Prefix::Cargo;
        let string = format!("{}", prefix);
        assert_eq!(string, "cargo")
    }

    #[test]
    fn test_display_custom() {
        let prefix = Prefix::Custom("custom".into());
        let string = format!("{}", prefix);
        assert_eq!(string, "custom")
    }
}