kodik-utils 0.1.1

Rust utilities library for Kodik
Documentation
1
2
3
4
5
6
7
8
use crate::ua::random_user_agent;

#[test]
fn random_agent_is_not_always_same() {
    let a1 = random_user_agent();
    let a2 = random_user_agent();
    assert_ne!(a1, a2);
}