cranpose-render-common 0.1.164

Common rendering contracts for Cranpose
Documentation
1
2
3
4
5
6
7
use super::*;

#[test]
fn auto_hyphenation_without_dictionary_feature_returns_none() {
    let break_idx = choose_auto_hyphen_break("Transformation", &TextStyle::default(), 8, 12);
    assert_eq!(break_idx, None);
}