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 8608ca58_b851_c047_4da0_9f9a61f04750["it_should_scan_files_without_extensions()"] 2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096["scan_with_globs()"] 8608ca58_b851_c047_4da0_9f9a61f04750 -->|calls| 2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096 style 8608ca58_b851_c047_4da0_9f9a61f04750 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