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