Skip to content

Commit

Permalink
Added de_de to the supported language table in the readme and deleted…
Browse files Browse the repository at this point in the history
… the manual tests which were only helper functions.
  • Loading branch information
xoryouyou committed Dec 26, 2024
1 parent 45b2572 commit 54a5477
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ A Rust library and command line tool for generating fake data in different langu
| Simplified Chinese | zh_cn |
| Japanese | ja_jp |
| Portugese (Brazilian) | pt_br |
| German | de_de |


## Installation
Expand Down
7 changes: 7 additions & 0 deletions fake/tests/de_manual_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,10 @@ fn de_manual_test() {
println!("{:#?}", c);
}
}
#[test]
fn de_manual_city_test() {
for _ in 1..10 {
let city: String = CityName(DE_DE).fake();
println!("{:#?}", city);
}
}

0 comments on commit 54a5477

Please sign in to comment.