#[test]
fn list_buffers() {
use crate::ListBuffers;
use std::borrow::Cow;
let list_buffers = ListBuffers::new();
#[cfg(feature = "tmux_1_7")]
let list_buffers = list_buffers.format("1");
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_5")))]
let list_buffers = list_buffers.target_session("2");
#[cfg(not(feature = "cmd_alias"))]
let cmd = "list-buffers";
#[cfg(feature = "cmd_alias")]
let cmd = "lsb";
let mut s = Vec::new();
s.push(cmd);
#[cfg(feature = "tmux_1_7")]
s.extend_from_slice(&["-F", "1"]);
#[cfg(all(feature = "tmux_0_8", not(feature = "tmux_1_5")))]
s.extend_from_slice(&["-t", "2"]);
#[cfg(any(
all(feature = "tmux_0_8", not(feature = "tmux_1_5")),
feature = "tmux_1_7"
))]
let s: Vec<Cow<str>> = s.into_iter().map(|a| a.into()).collect();
let list_buffers = list_buffers.build().to_vec();
assert_eq!(list_buffers, s);
}