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 f82bcfd8_4ff2_cf89_e768_f08d721bb91a["it_should_list_all_files_in_the_public_folder_explicitly()"] 1581ed51_04e1_62c1_6e26_ea43cf82d5f9["scan()"] f82bcfd8_4ff2_cf89_e768_f08d721bb91a -->|calls| 1581ed51_04e1_62c1_6e26_ea43cf82d5f9 style f82bcfd8_4ff2_cf89_e768_f08d721bb91a 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
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.
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