wl-proxy 0.1.2

Wayland connection proxy
Documentation
1
2
3
4
5
6
7
8
use crate::utils::stash::Stash;

#[test]
fn test() {
    let stash = Stash::default();
    stash.borrow().push(0);
    assert_eq!(stash.borrow().len(), 0);
}