it_should_move_the_starting_folders_to_the_path() — tailwindcss Function Reference
Architecture documentation for the it_should_move_the_starting_folders_to_the_path() function in glob.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 76531907_720d_0933_45f4_3cfd5081bb66["it_should_move_the_starting_folders_to_the_path()"] bb299b16_f66b_04f3_7212_f4ec2939c6ee["create_folders()"] 76531907_720d_0933_45f4_3cfd5081bb66 -->|calls| bb299b16_f66b_04f3_7212_f4ec2939c6ee 3ae15a03_28aa_2117_2ea0_09d75795dc8b["test()"] 76531907_720d_0933_45f4_3cfd5081bb66 -->|calls| 3ae15a03_28aa_2117_2ea0_09d75795dc8b style 76531907_720d_0933_45f4_3cfd5081bb66 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/glob.rs lines 332–349
fn it_should_move_the_starting_folders_to_the_path() {
let base = create_folders(&["projects/example/other"]);
let actual = test(
&base,
&[GlobEntry {
base: "/projects".to_string(),
pattern: "example/other/*.html".to_string(),
}],
);
let expected = vec![GlobEntry {
base: "/projects/example/other".to_string(),
pattern: "*.html".to_string(),
}];
assert_eq!(actual, expected,);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does it_should_move_the_starting_folders_to_the_path() do?
it_should_move_the_starting_folders_to_the_path() is a function in the tailwindcss codebase.
What does it_should_move_the_starting_folders_to_the_path() call?
it_should_move_the_starting_folders_to_the_path() calls 2 function(s): create_folders, test.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free