reovim-client-cli 0.14.4

Reovim CLI client - command-line interface using gRPC v2
Documentation
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);
}