Home / Function/ it_should_work_with_a_set_of_root_files_and_ignore_ignored_files() — tailwindcss Function Reference

it_should_work_with_a_set_of_root_files_and_ignore_ignored_files() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  ff4b0e24_c416_72b3_047e_20097c9ba7bc["it_should_work_with_a_set_of_root_files_and_ignore_ignored_files()"]
  6b48c515_a72f_7a7d_7ea7_b80f71a82b19["scanner.rs"]
  ff4b0e24_c416_72b3_047e_20097c9ba7bc -->|defined in| 6b48c515_a72f_7a7d_7ea7_b80f71a82b19
  89cd8369_536c_74e5_91d1_719df04e4597["scan()"]
  ff4b0e24_c416_72b3_047e_20097c9ba7bc -->|calls| 89cd8369_536c_74e5_91d1_719df04e4597
  style ff4b0e24_c416_72b3_047e_20097c9ba7bc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 164–180

    fn it_should_work_with_a_set_of_root_files_and_ignore_ignored_files() {
        let ScanResult {
            files,
            globs,
            normalized_sources,
            ..
        } = scan(&[
            (".gitignore", "b.html"),
            ("index.html", ""),
            ("a.html", ""),
            ("b.html", ""),
            ("c.html", ""),
        ]);
        assert_eq!(files, vec!["a.html", "c.html", "index.html"]);
        assert_eq!(globs, vec!["*"]);
        assert_eq!(normalized_sources, vec!["**/*"]);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

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