1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use rat_theme4::load_palette; #[test] fn test_load() { let b = include_bytes!("everforest.pal"); match load_palette(b.as_slice()) { Ok(p) => { dbg!(p); } Err(e) => { dbg!(e); panic!() } }; }