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 2092ae1f_14f8_f4af_ad82_6755577cc36d["it_should_work_with_a_set_of_root_files()"] 6b48c515_a72f_7a7d_7ea7_b80f71a82b19["scanner.rs"] 2092ae1f_14f8_f4af_ad82_6755577cc36d -->|defined in| 6b48c515_a72f_7a7d_7ea7_b80f71a82b19 89cd8369_536c_74e5_91d1_719df04e4597["scan()"] 2092ae1f_14f8_f4af_ad82_6755577cc36d -->|calls| 89cd8369_536c_74e5_91d1_719df04e4597 style 2092ae1f_14f8_f4af_ad82_6755577cc36d 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