it_should_scan_files_without_extensions() — tailwindcss Function Reference
Architecture documentation for the it_should_scan_files_without_extensions() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 226e8bfa_1f1d_2b5d_be43_7985d4aa7b63["it_should_scan_files_without_extensions()"] 4e97b231_bdcb_50f8_8ad3_53d02c45a8bb["scan_with_globs()"] 226e8bfa_1f1d_2b5d_be43_7985d4aa7b63 -->|calls| 4e97b231_bdcb_50f8_8ad3_53d02c45a8bb style 226e8bfa_1f1d_2b5d_be43_7985d4aa7b63 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 550–563
fn it_should_scan_files_without_extensions() {
// These look like folders, but they are files
let ScanResult {
candidates,
normalized_sources,
..
} = scan_with_globs(
&[("my-file", "content-['my-file']")],
vec!["@source '**/*'", "@source './my-file'"],
);
assert_eq!(candidates, vec!["content-['my-file']"]);
assert_eq!(normalized_sources, vec!["**/*", "my-file"]);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does it_should_scan_files_without_extensions() do?
it_should_scan_files_without_extensions() is a function in the tailwindcss codebase.
What does it_should_scan_files_without_extensions() call?
it_should_scan_files_without_extensions() 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