it_should_expand_multiple_expansions_in_the_same_folder() — tailwindcss Function Reference
Architecture documentation for the it_should_expand_multiple_expansions_in_the_same_folder() function in glob.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 8297bf34_44cf_0228_08f9_9b97a851e875["it_should_expand_multiple_expansions_in_the_same_folder()"] bb299b16_f66b_04f3_7212_f4ec2939c6ee["create_folders()"] 8297bf34_44cf_0228_08f9_9b97a851e875 -->|calls| bb299b16_f66b_04f3_7212_f4ec2939c6ee 3ae15a03_28aa_2117_2ea0_09d75795dc8b["test()"] 8297bf34_44cf_0228_08f9_9b97a851e875 -->|calls| 3ae15a03_28aa_2117_2ea0_09d75795dc8b style 8297bf34_44cf_0228_08f9_9b97a851e875 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/glob.rs lines 378–414
fn it_should_expand_multiple_expansions_in_the_same_folder() {
let base = create_folders(&[
"projects/a-b-d-e-g",
"projects/a-b-d-f-g",
"projects/a-c-d-e-g",
"projects/a-c-d-f-g",
]);
let actual = test(
&base,
&[GlobEntry {
base: "/projects".to_string(),
pattern: "a-{b,c}-d-{e,f}-g/*.html".to_string(),
}],
);
let expected = vec![
GlobEntry {
base: "/projects/a-b-d-e-g".to_string(),
pattern: "*.html".to_string(),
},
GlobEntry {
base: "/projects/a-b-d-f-g".to_string(),
pattern: "*.html".to_string(),
},
GlobEntry {
base: "/projects/a-c-d-e-g".to_string(),
pattern: "*.html".to_string(),
},
GlobEntry {
base: "/projects/a-c-d-f-g".to_string(),
pattern: "*.html".to_string(),
},
];
assert_eq!(actual, expected,);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does it_should_expand_multiple_expansions_in_the_same_folder() do?
it_should_expand_multiple_expansions_in_the_same_folder() is a function in the tailwindcss codebase.
What does it_should_expand_multiple_expansions_in_the_same_folder() call?
it_should_expand_multiple_expansions_in_the_same_folder() 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