pub const CONSTITUTION_MD: &str = include_str!("../CONSTITUTION.md");
pub const CONSTITUTION_VERSION: &str = "0.91";
pub const CONSTITUTION_STATUS: &str = "Draft";
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn constitution_is_embedded() {
assert!(!CONSTITUTION_MD.is_empty());
assert!(CONSTITUTION_MD.contains("Intelligent Entity"));
assert!(CONSTITUTION_MD.contains("Law 1"));
assert!(CONSTITUTION_MD.contains("The only winning move is to play together"));
}
#[test]
fn version_is_set() {
assert!(!CONSTITUTION_VERSION.is_empty());
assert!(!CONSTITUTION_STATUS.is_empty());
}
}