use crate::css;
use super::utils::*;
use crate as vertigo;
#[test]
fn test_hover() {
let value = css! {"
color: red;
:hover {
color: white;
background-color: blue;
};
background-color: black;
"};
assert_eq!(
get_s(&value),
"color: red;\n:hover { color: white;\nbackground-color: blue; };\nbackground-color: black;"
)
}
#[test]
fn test_hover_with_params() {
let param_inner = "blue";
let param_outer = "black";
let value = css! {"
color: red;
:hover {
color: white;
background-color: {param_inner};
};
background-color: {param_outer};
"};
assert_eq!(
get_d(&value),
"color: red;\n:hover { color: white;\nbackground-color: blue; };\nbackground-color: black;"
)
}
#[test]
fn test_last_of_type() {
let value = css! {"
color: red;
:nth-last-of-type(2) {
background-color: blue;
};
"};
assert_eq!(
get_s(&value),
"color: red;\n:nth-last-of-type(2) { background-color: blue; };"
)
}
#[test]
fn test_doubled() {
let value = css! {"
width: 40px;
:focus {
color: red;
};
:focus::first-letter {
color: crimson;
};
"};
assert_eq!(
get_s(&value),
"width: 40px;\n:focus { color: red; };\n:focus::first-letter { color: crimson; };"
)
}