it_should_list_all_files_in_the_public_folder_explicitly() — tailwindcss Function Reference
Architecture documentation for the it_should_list_all_files_in_the_public_folder_explicitly() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD f3475ee4_0d82_8caa_5bcd_8aa83579f140["it_should_list_all_files_in_the_public_folder_explicitly()"] 6b48c515_a72f_7a7d_7ea7_b80f71a82b19["scanner.rs"] f3475ee4_0d82_8caa_5bcd_8aa83579f140 -->|defined in| 6b48c515_a72f_7a7d_7ea7_b80f71a82b19 89cd8369_536c_74e5_91d1_719df04e4597["scan()"] f3475ee4_0d82_8caa_5bcd_8aa83579f140 -->|calls| 89cd8369_536c_74e5_91d1_719df04e4597 style f3475ee4_0d82_8caa_5bcd_8aa83579f140 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 183–211
fn it_should_list_all_files_in_the_public_folder_explicitly() {
let ScanResult {
files,
globs,
normalized_sources,
..
} = scan(&[
("index.html", ""),
("public/a.html", ""),
("public/b.html", ""),
("public/c.html", ""),
("public/nested/c.html", ""),
("public/deeply/nested/c.html", ""),
]);
assert_eq!(
files,
vec![
"index.html",
"public/a.html",
"public/b.html",
"public/c.html",
"public/deeply/nested/c.html",
"public/nested/c.html",
]
);
assert_eq!(globs, vec!["*"]);
assert_eq!(normalized_sources, vec!["**/*"]);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does it_should_list_all_files_in_the_public_folder_explicitly() do?
it_should_list_all_files_in_the_public_folder_explicitly() is a function in the tailwindcss codebase, defined in crates/oxide/tests/scanner.rs.
Where is it_should_list_all_files_in_the_public_folder_explicitly() defined?
it_should_list_all_files_in_the_public_folder_explicitly() is defined in crates/oxide/tests/scanner.rs at line 183.
What does it_should_list_all_files_in_the_public_folder_explicitly() call?
it_should_list_all_files_in_the_public_folder_explicitly() 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