1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#![allow(dead_code)]

pub mod address;
pub mod animal;
pub mod beer;
pub mod bool_rand;
pub mod color;
pub mod company;
pub mod contact;
pub mod currency;
pub mod data;
pub mod datetime;
pub mod file;
pub mod generator;
pub mod hacker;
pub mod hipster;
pub mod image;
pub mod internet;
pub mod job;
pub mod language;
pub mod log_level;
pub mod misc;
pub mod name;
pub mod password;
pub mod payment;
pub mod person;
pub mod status_code;
pub mod unique;
pub mod user_agent;
pub mod vehicle;
pub mod words;

mod test_helper {
    pub fn print() -> bool {
        true
    }
}