it_should_be_possible_to_scan_in_the_parent_directory() — tailwindcss Function Reference
Architecture documentation for the it_should_be_possible_to_scan_in_the_parent_directory() function in scanner.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD c23c94de_a85c_e5d7_3b4a_ff694ead4bf7["it_should_be_possible_to_scan_in_the_parent_directory()"] 6b48c515_a72f_7a7d_7ea7_b80f71a82b19["scanner.rs"] c23c94de_a85c_e5d7_3b4a_ff694ead4bf7 -->|defined in| 6b48c515_a72f_7a7d_7ea7_b80f71a82b19 15062065_cf6b_d794_5db7_667a2b756e64["scan_with_globs()"] c23c94de_a85c_e5d7_3b4a_ff694ead4bf7 -->|calls| 15062065_cf6b_d794_5db7_667a2b756e64 style c23c94de_a85c_e5d7_3b4a_ff694ead4bf7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/tests/scanner.rs lines 535–547
fn it_should_be_possible_to_scan_in_the_parent_directory() {
let ScanResult {
candidates,
normalized_sources,
..
} = scan_with_globs(
&[("foo/bar/baz/foo.html", "content-['foo.html']")],
vec!["@source '**/*'", "@source './foo/bar/baz/..'"],
);
assert_eq!(candidates, vec!["content-['foo.html']"]);
assert_eq!(normalized_sources, vec!["**/*", "foo/bar/**/*"]);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does it_should_be_possible_to_scan_in_the_parent_directory() do?
it_should_be_possible_to_scan_in_the_parent_directory() is a function in the tailwindcss codebase, defined in crates/oxide/tests/scanner.rs.
Where is it_should_be_possible_to_scan_in_the_parent_directory() defined?
it_should_be_possible_to_scan_in_the_parent_directory() is defined in crates/oxide/tests/scanner.rs at line 535.
What does it_should_be_possible_to_scan_in_the_parent_directory() call?
it_should_be_possible_to_scan_in_the_parent_directory() 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