it_should_work_with_a_set_of_root_files() — tailwindcss Function Reference
Architecture documentation for the it_should_work_with_a_set_of_root_files() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 222e4d7c_ca33_f555_207b_da9cb14e6508["it_should_work_with_a_set_of_root_files()"] 340ddba0_15e4_a309_9dea_cf6d6e73381d["scanner.rs"] 222e4d7c_ca33_f555_207b_da9cb14e6508 -->|defined in| 340ddba0_15e4_a309_9dea_cf6d6e73381d 2f3305c3_ad36_6002_daa9_52b16e0424fd["scan()"] 222e4d7c_ca33_f555_207b_da9cb14e6508 -->|calls| 2f3305c3_ad36_6002_daa9_52b16e0424fd style 222e4d7c_ca33_f555_207b_da9cb14e6508 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 146–161
fn it_should_work_with_a_set_of_root_files() {
let ScanResult {
files,
globs,
normalized_sources,
..
} = scan(&[
("index.html", ""),
("a.html", ""),
("b.html", ""),
("c.html", ""),
]);
assert_eq!(files, vec!["a.html", "b.html", "c.html", "index.html"]);
assert_eq!(globs, vec!["*"]);
assert_eq!(normalized_sources, vec!["**/*"]);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does it_should_work_with_a_set_of_root_files() do?
it_should_work_with_a_set_of_root_files() is a function in the tailwindcss codebase, defined in crates/oxide/tests/scanner.rs.
Where is it_should_work_with_a_set_of_root_files() defined?
it_should_work_with_a_set_of_root_files() is defined in crates/oxide/tests/scanner.rs at line 146.
What does it_should_work_with_a_set_of_root_files() call?
it_should_work_with_a_set_of_root_files() calls 1 function(s): scan.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free