it_should_keep_globs_that_start_with_file_wildcards_as_is() — tailwindcss Function Reference
Architecture documentation for the it_should_keep_globs_that_start_with_file_wildcards_as_is() function in glob.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD feee3bfc_c98f_77d0_353c_806b9f7bbd95["it_should_keep_globs_that_start_with_file_wildcards_as_is()"] bb299b16_f66b_04f3_7212_f4ec2939c6ee["create_folders()"] feee3bfc_c98f_77d0_353c_806b9f7bbd95 -->|calls| bb299b16_f66b_04f3_7212_f4ec2939c6ee 3ae15a03_28aa_2117_2ea0_09d75795dc8b["test()"] feee3bfc_c98f_77d0_353c_806b9f7bbd95 -->|calls| 3ae15a03_28aa_2117_2ea0_09d75795dc8b style feee3bfc_c98f_77d0_353c_806b9f7bbd95 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/glob.rs lines 272–289
fn it_should_keep_globs_that_start_with_file_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
Calls
Source
Frequently Asked Questions
What does it_should_keep_globs_that_start_with_file_wildcards_as_is() do?
it_should_keep_globs_that_start_with_file_wildcards_as_is() is a function in the tailwindcss codebase.
What does it_should_keep_globs_that_start_with_file_wildcards_as_is() call?
it_should_keep_globs_that_start_with_file_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