Home / Function/ it_should_ignore_binary_files() — tailwindcss Function Reference

it_should_ignore_binary_files() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  07754aba_12e6_3b43_9a8f_ada2c5369a3c["it_should_ignore_binary_files()"]
  1581ed51_04e1_62c1_6e26_ea43cf82d5f9["scan()"]
  07754aba_12e6_3b43_9a8f_ada2c5369a3c -->|calls| 1581ed51_04e1_62c1_6e26_ea43cf82d5f9
  style 07754aba_12e6_3b43_9a8f_ada2c5369a3c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 296–312

    fn it_should_ignore_binary_files() {
        let ScanResult {
            files,
            globs,
            normalized_sources,
            ..
        } = scan(&[
            ("index.html", ""),
            ("a.mp4", ""),
            ("b.png", ""),
            ("c.lock", ""),
        ]);

        assert_eq!(files, vec!["index.html"]);
        assert_eq!(globs, vec!["*"]);
        assert_eq!(normalized_sources, vec!["**/*"]);
    }

Domain

Subdomains

Calls

Frequently Asked Questions

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