it_should_branch_expandable_folders() — tailwindcss Function Reference
Architecture documentation for the it_should_branch_expandable_folders() function in glob.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD b8a8b78a_9bf5_a406_87c6_0bafa0786729["it_should_branch_expandable_folders()"] d6210432_49e5_7bfc_e9c4_6cebc740bb16["glob.rs"] b8a8b78a_9bf5_a406_87c6_0bafa0786729 -->|defined in| d6210432_49e5_7bfc_e9c4_6cebc740bb16 1120e755_7352_a393_37fa_f89d503fa82e["create_folders()"] b8a8b78a_9bf5_a406_87c6_0bafa0786729 -->|calls| 1120e755_7352_a393_37fa_f89d503fa82e fc119bfa_39ba_8a9d_993d_92d6a3386600["test()"] b8a8b78a_9bf5_a406_87c6_0bafa0786729 -->|calls| fc119bfa_39ba_8a9d_993d_92d6a3386600 style b8a8b78a_9bf5_a406_87c6_0bafa0786729 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/glob.rs lines 352–375
fn it_should_branch_expandable_folders() {
let base = create_folders(&["projects/foo", "projects/bar"]);
let actual = test(
&base,
&[GlobEntry {
base: "/projects".to_string(),
pattern: "{foo,bar}/*.html".to_string(),
}],
);
let expected = vec![
GlobEntry {
base: "/projects/bar".to_string(),
pattern: "*.html".to_string(),
},
GlobEntry {
base: "/projects/foo".to_string(),
pattern: "*.html".to_string(),
},
];
assert_eq!(actual, expected,);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does it_should_branch_expandable_folders() do?
it_should_branch_expandable_folders() is a function in the tailwindcss codebase, defined in crates/oxide/src/glob.rs.
Where is it_should_branch_expandable_folders() defined?
it_should_branch_expandable_folders() is defined in crates/oxide/src/glob.rs at line 352.
What does it_should_branch_expandable_folders() call?
it_should_branch_expandable_folders() 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