//! Unicode support integration tests.
//!
//! This module tests comprehensive Unicode functionality including:
//! - Basic Unicode character matching
//! - Unicode mode flags
//! - Negated Unicode properties
//! - Unicode property escapes (\p{...}, \P{...})
//! - Unicode script properties
use Regex;
use RegexBuilder;
/// Creates a Regex with JIT enabled when the `jit` feature is available.