Home / Function/ it_should_move_the_starting_folders_to_the_path() — tailwindcss Function Reference

it_should_move_the_starting_folders_to_the_path() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  847e0586_277e_6a4f_0f8f_ca46e1fe3268["it_should_move_the_starting_folders_to_the_path()"]
  06f0538c_a174_ca7e_0254_932670828484["glob.rs"]
  847e0586_277e_6a4f_0f8f_ca46e1fe3268 -->|defined in| 06f0538c_a174_ca7e_0254_932670828484
  671ea48f_f03a_71df_9af3_69fa925411c8["create_folders()"]
  847e0586_277e_6a4f_0f8f_ca46e1fe3268 -->|calls| 671ea48f_f03a_71df_9af3_69fa925411c8
  3b14a9e7_5d43_bc68_e82b_f61c14c46ab9["test()"]
  847e0586_277e_6a4f_0f8f_ca46e1fe3268 -->|calls| 3b14a9e7_5d43_bc68_e82b_f61c14c46ab9
  style 847e0586_277e_6a4f_0f8f_ca46e1fe3268 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/glob.rs lines 332–349

    fn it_should_move_the_starting_folders_to_the_path() {
        let base = create_folders(&["projects/example/other"]);

        let actual = test(
            &base,
            &[GlobEntry {
                base: "/projects".to_string(),
                pattern: "example/other/*.html".to_string(),
            }],
        );

        let expected = vec![GlobEntry {
            base: "/projects/example/other".to_string(),
            pattern: "*.html".to_string(),
        }];

        assert_eq!(actual, expected,);
    }

Domain

Subdomains

Frequently Asked Questions

What does it_should_move_the_starting_folders_to_the_path() do?
it_should_move_the_starting_folders_to_the_path() is a function in the tailwindcss codebase, defined in crates/oxide/src/glob.rs.
Where is it_should_move_the_starting_folders_to_the_path() defined?
it_should_move_the_starting_folders_to_the_path() is defined in crates/oxide/src/glob.rs at line 332.
What does it_should_move_the_starting_folders_to_the_path() call?
it_should_move_the_starting_folders_to_the_path() 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