it_should_scan_content_paths() — tailwindcss Function Reference
Architecture documentation for the it_should_scan_content_paths() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 830965ac_b880_5f2d_0aa1_ababe9386f78["it_should_scan_content_paths()"] 340ddba0_15e4_a309_9dea_cf6d6e73381d["scanner.rs"] 830965ac_b880_5f2d_0aa1_ababe9386f78 -->|defined in| 340ddba0_15e4_a309_9dea_cf6d6e73381d a53d0655_c789_b0d9_0c48_cfd60da7194b["scan_with_globs()"] 830965ac_b880_5f2d_0aa1_ababe9386f78 -->|calls| a53d0655_c789_b0d9_0c48_cfd60da7194b style 830965ac_b880_5f2d_0aa1_ababe9386f78 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 604–620
fn it_should_scan_content_paths() {
let ScanResult {
candidates,
normalized_sources,
..
} = scan_with_globs(
&[
// We know that `.styl` extensions are ignored, so they are not covered by auto content
// detection.
("foo.styl", "content-['foo.styl']"),
],
vec!["@source '**/*'", "@source '*.styl'"],
);
assert_eq!(candidates, vec!["content-['foo.styl']"]);
assert_eq!(normalized_sources, vec!["**/*", "*.styl"]);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does it_should_scan_content_paths() do?
it_should_scan_content_paths() is a function in the tailwindcss codebase, defined in crates/oxide/tests/scanner.rs.
Where is it_should_scan_content_paths() defined?
it_should_scan_content_paths() is defined in crates/oxide/tests/scanner.rs at line 604.
What does it_should_scan_content_paths() call?
it_should_scan_content_paths() calls 1 function(s): scan_with_globs.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free