1 2 3 4 5 6 7 8 9 10
use super::*; // Tests that don't require a running server #[test] fn test_output_format_eq() { assert_eq!(OutputFormat::Plain, OutputFormat::Plain); assert_eq!(OutputFormat::Json, OutputFormat::Json); assert_ne!(OutputFormat::Plain, OutputFormat::Json); }