Home / Function/ it_should_branch_expandable_folders() — tailwindcss Function Reference

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
  78ecb553_394f_b972_4184_14ac9671a46c["it_should_branch_expandable_folders()"]
  bb299b16_f66b_04f3_7212_f4ec2939c6ee["create_folders()"]
  78ecb553_394f_b972_4184_14ac9671a46c -->|calls| bb299b16_f66b_04f3_7212_f4ec2939c6ee
  3ae15a03_28aa_2117_2ea0_09d75795dc8b["test()"]
  78ecb553_394f_b972_4184_14ac9671a46c -->|calls| 3ae15a03_28aa_2117_2ea0_09d75795dc8b
  style 78ecb553_394f_b972_4184_14ac9671a46c 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

Frequently Asked Questions

What does it_should_branch_expandable_folders() do?
it_should_branch_expandable_folders() is a function in the tailwindcss codebase.
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