Skip to content

Commit d58d859

Browse files
committed
cleanup
1 parent 59cd0ec commit d58d859

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

crates/cuid1/src/cuid1.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -230,21 +230,21 @@ mod tests {
230230

231231
#[test]
232232
fn cuid_is_cuid() {
233-
assert!(is_cuid(cuid1().unwrap()));
233+
assert!(is_cuid1(cuid1().unwrap()));
234234
}
235235

236236
#[test]
237237
fn cuid_is_not_cuid_zero_len() {
238-
assert!(!is_cuid(""));
238+
assert!(!is_cuid1(""));
239239
}
240240

241241
#[test]
242242
fn slug_len() {
243-
assert!(slug().unwrap().len() == 10);
243+
assert!(cuid1_slug().unwrap().len() == 10);
244244
}
245245

246246
#[test]
247247
fn slug_is_slug() {
248-
assert!(is_slug(slug().unwrap()));
248+
assert!(is_cuid1_slug(cuid1_slug().unwrap()));
249249
}
250250
}

crates/cuid1/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//! use cuid;
77
//!
88
//! // Get a v1 CUID
9-
//! println!("{}", cuid::cuid1());
9+
//! println!("{}", cuid::cuid1().unwrap());
1010
//!
1111
//! // Get a v2 CUID
1212
//! println!("{}", cuid::cuid2());

crates/cuid1/tests/cuid1/collisions.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ mod test {
1010
fn check_cuid_collisions() {
1111
let mut set = HashSet::new();
1212
for _ in 0..1_200_000 {
13-
let id = cuid::cuid().unwrap();
13+
let id = cuid::cuid1().unwrap();
1414
set.insert(id);
1515
}
1616
// we generated unique CUIDs
@@ -31,7 +31,7 @@ mod test {
3131
let t = thread::spawn(move || {
3232
let mut thread_set = HashSet::new();
3333
for _ in 0..ids_per_thread {
34-
let id = cuid::cuid().unwrap();
34+
let id = cuid::cuid1().unwrap();
3535
thread_set.insert(id);
3636
}
3737
let mut sets = thread_sets.lock().unwrap();
@@ -79,7 +79,7 @@ mod single_thread {
7979
fn check_slug_collisions() {
8080
let mut set = HashSet::new();
8181
for _ in 0..1_200_000 {
82-
let id = cuid::slug().unwrap();
82+
let id = cuid::cuid1_slug().unwrap();
8383
set.insert(id);
8484
}
8585
// we had no duplicate slugs

crates/cuid1/tests/cuid1/length.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::collections::HashSet;
66
fn check_cuid_length() {
77
let mut set = HashSet::new();
88
for _ in 0..100000 {
9-
let id = cuid::cuid().unwrap();
9+
let id = cuid::cuid1().unwrap();
1010
set.insert(id);
1111
}
1212
// all CUIDs are of the same length
@@ -19,7 +19,7 @@ fn check_cuid_length() {
1919
fn check_cuid_slug_length() {
2020
let mut set = HashSet::new();
2121
for _ in 0..100000 {
22-
let id = cuid::slug().unwrap();
22+
let id = cuid::cuid1_slug().unwrap();
2323
set.insert(id);
2424
}
2525
// all slugs are of the same length

0 commit comments

Comments
 (0)