Home / Function/ it_should_list_nested_folders_explicitly_in_the_public_folder() — tailwindcss Function Reference

it_should_list_nested_folders_explicitly_in_the_public_folder() — tailwindcss Function Reference

Architecture documentation for the it_should_list_nested_folders_explicitly_in_the_public_folder() function in scanner.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  a8737a09_f81d_b85c_5806_1ac0e8396984["it_should_list_nested_folders_explicitly_in_the_public_folder()"]
  340ddba0_15e4_a309_9dea_cf6d6e73381d["scanner.rs"]
  a8737a09_f81d_b85c_5806_1ac0e8396984 -->|defined in| 340ddba0_15e4_a309_9dea_cf6d6e73381d
  2f3305c3_ad36_6002_daa9_52b16e0424fd["scan()"]
  a8737a09_f81d_b85c_5806_1ac0e8396984 -->|calls| 2f3305c3_ad36_6002_daa9_52b16e0424fd
  style a8737a09_f81d_b85c_5806_1ac0e8396984 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 214–248

    fn it_should_list_nested_folders_explicitly_in_the_public_folder() {
        let ScanResult {
            files,
            globs,
            normalized_sources,
            ..
        } = scan(&[
            ("index.html", ""),
            ("public/a.html", ""),
            ("public/b.html", ""),
            ("public/c.html", ""),
            ("public/nested/a.html", ""),
            ("public/nested/b.html", ""),
            ("public/nested/c.html", ""),
            ("public/nested/again/a.html", ""),
            ("public/very/deeply/nested/a.html", ""),
        ]);

        assert_eq!(
            files,
            vec![
                "index.html",
                "public/a.html",
                "public/b.html",
                "public/c.html",
                "public/nested/a.html",
                "public/nested/again/a.html",
                "public/nested/b.html",
                "public/nested/c.html",
                "public/very/deeply/nested/a.html",
            ]
        );
        assert_eq!(globs, vec!["*",]);
        assert_eq!(normalized_sources, vec!["**/*"]);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does it_should_list_nested_folders_explicitly_in_the_public_folder() do?
it_should_list_nested_folders_explicitly_in_the_public_folder() is a function in the tailwindcss codebase, defined in crates/oxide/tests/scanner.rs.
Where is it_should_list_nested_folders_explicitly_in_the_public_folder() defined?
it_should_list_nested_folders_explicitly_in_the_public_folder() is defined in crates/oxide/tests/scanner.rs at line 214.
What does it_should_list_nested_folders_explicitly_in_the_public_folder() call?
it_should_list_nested_folders_explicitly_in_the_public_folder() calls 1 function(s): scan.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free