Home / Function/ it_should_expand_a_complex_example() — tailwindcss Function Reference

it_should_expand_a_complex_example() — tailwindcss Function Reference

Architecture documentation for the it_should_expand_a_complex_example() function in glob.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  5cc13c0c_f925_6d05_8365_d0d4b20ef85c["it_should_expand_a_complex_example()"]
  d5e8219a_41bf_5cdb_2ab9_fa6f6a6dbb23["create_folders()"]
  5cc13c0c_f925_6d05_8365_d0d4b20ef85c -->|calls| d5e8219a_41bf_5cdb_2ab9_fa6f6a6dbb23
  259c9079_e6e4_38be_be7c_c860a61e0b2f["test()"]
  5cc13c0c_f925_6d05_8365_d0d4b20ef85c -->|calls| 259c9079_e6e4_38be_be7c_c860a61e0b2f
  style 5cc13c0c_f925_6d05_8365_d0d4b20ef85c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/glob.rs lines 564–600

    fn it_should_expand_a_complex_example() {
        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

Frequently Asked Questions

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