Home / Function/ it_should_scan_files_without_extensions() — tailwindcss Function Reference

it_should_scan_files_without_extensions() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  c1d8543a_6000_e714_3554_10f60a0bcf08["it_should_scan_files_without_extensions()"]
  6b48c515_a72f_7a7d_7ea7_b80f71a82b19["scanner.rs"]
  c1d8543a_6000_e714_3554_10f60a0bcf08 -->|defined in| 6b48c515_a72f_7a7d_7ea7_b80f71a82b19
  15062065_cf6b_d794_5db7_667a2b756e64["scan_with_globs()"]
  c1d8543a_6000_e714_3554_10f60a0bcf08 -->|calls| 15062065_cf6b_d794_5db7_667a2b756e64
  style c1d8543a_6000_e714_3554_10f60a0bcf08 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 550–563

    fn it_should_scan_files_without_extensions() {
        // These look like folders, but they are files
        let ScanResult {
            candidates,
            normalized_sources,
            ..
        } = scan_with_globs(
            &[("my-file", "content-['my-file']")],
            vec!["@source '**/*'", "@source './my-file'"],
        );

        assert_eq!(candidates, vec!["content-['my-file']"]);
        assert_eq!(normalized_sources, vec!["**/*", "my-file"]);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free