css_ast/rules/
import.rs

1use crate::Todo;
2
3// https://drafts.csswg.org/css-cascade-5/#at-ruledef-import
4pub type ImportRule = Todo;
5
6#[cfg(test)]
7mod tests {
8	use super::*;
9
10	#[test]
11	fn size_test() {
12		assert_eq!(std::mem::size_of::<ImportRule>(), 0);
13	}
14
15	#[test]
16	fn test_writes() {
17		//assert_parse!(ImportRule, "@import \"foo.css\"");
18	}
19}