Home / Function/ test_works_with_utf8_special_character_paths() — tailwindcss Function Reference

test_works_with_utf8_special_character_paths() — tailwindcss Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  fa98f511_7bc0_0422_40f9_850c3a0f77af["test_works_with_utf8_special_character_paths()"]
  2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096["scan_with_globs()"]
  fa98f511_7bc0_0422_40f9_850c3a0f77af -->|calls| 2c5d72c1_5cbe_ebbe_4eca_30cd90f4d096
  style fa98f511_7bc0_0422_40f9_850c3a0f77af fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/tests/scanner.rs lines 1626–1649

    fn test_works_with_utf8_special_character_paths() {
        let ScanResult {
            candidates,
            files,
            globs,
            normalized_sources,
        } = scan_with_globs(
            &[
                ("src/💩.js", "content-['src/💩.js']"),
                ("src/🤦‍♂️.tsx", "content-['src/🤦‍♂️.tsx']"),
                ("src/🤦‍♂️/foo.tsx", "content-['src/🤦‍♂️/foo.tsx']"),
            ],
            vec!["@source '**/*'", "@source not 'src/🤦‍♂️'"],
        );

        assert_eq!(
            candidates,
            vec!["content-['src/💩.js']", "content-['src/🤦‍♂️.tsx']"]
        );

        assert_eq!(files, vec!["src/💩.js", "src/🤦‍♂️.tsx"]);
        assert_eq!(globs, vec!["*", "src/*/*.{aspx,astro,cjs,cts,eex,erb,gjs,gts,haml,handlebars,hbs,heex,html,jade,js,jsx,liquid,md,mdx,mjs,mts,mustache,njk,nunjucks,php,pug,py,razor,rb,rhtml,rs,slim,svelte,tpl,ts,tsx,twig,vue}"]);
        assert_eq!(normalized_sources, vec!["**/*"]);
    }

Domain

Subdomains

Frequently Asked Questions

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