jiq 3.21.0

Interactive JSON query tool with real-time output
Documentation
1
2
3
4
5
6
7
8
9
//! Tests for clipboard/system

use super::*;

#[test]
fn test_copy_returns_result() {
    let result = copy("test");
    assert!(result.is_ok() || matches!(result, Err(ClipboardError::SystemUnavailable)));
}