1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#[test]
fn set_window_option() {
use crate::{SetWindowOption, TargetWindow};
use std::borrow::Cow;
let target_window = TargetWindow::Raw("1").to_string();
let mut set_window_option = SetWindowOption::new();
#[cfg(feature = "tmux_1_0")]
set_window_option.append();
#[cfg(feature = "tmux_2_6")]
set_window_option.format();
#[cfg(feature = "tmux_0_8")]
set_window_option.global();
#[cfg(feature = "tmux_1_9")]
set_window_option.not_overwrite();
#[cfg(feature = "tmux_1_7")]
set_window_option.quiet();
#[cfg(feature = "tmux_0_8")]
set_window_option.unset();
#[cfg(feature = "tmux_0_8")]
set_window_option.target_window(&target_window);
#[cfg(feature = "tmux_0_8")]
set_window_option.option("2");
#[cfg(feature = "tmux_0_8")]
set_window_option.value("3");
#[cfg(not(feature = "cmd_alias"))]
let cmd = "set-window-option";
#[cfg(feature = "cmd_alias")]
let cmd = "setw";
let mut s = Vec::new();
#[cfg(feature = "tmux_1_0")]
s.push("-a");
#[cfg(feature = "tmux_2_6")]
s.push("-F");
#[cfg(feature = "tmux_0_8")]
s.push("-g");
#[cfg(feature = "tmux_1_9")]
s.push("-o");
#[cfg(feature = "tmux_1_7")]
s.push("-q");
#[cfg(feature = "tmux_0_8")]
s.push("-u");
#[cfg(feature = "tmux_0_8")]
s.extend_from_slice(&["-t", "1"]);
#[cfg(feature = "tmux_0_8")]
s.push("2");
#[cfg(feature = "tmux_0_8")]
s.push("3");
let s = s.into_iter().map(|a| a.into()).collect();
assert_eq!(set_window_option.0.bin, Cow::Borrowed("tmux"));
assert_eq!(set_window_option.0.bin_args, None);
assert_eq!(set_window_option.0.cmd, Some(Cow::Borrowed(cmd)));
assert_eq!(set_window_option.0.cmd_args, Some(s));
}