File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -230,21 +230,21 @@ mod tests {
230
230
231
231
#[ test]
232
232
fn cuid_is_cuid ( ) {
233
- assert ! ( is_cuid ( cuid1( ) . unwrap( ) ) ) ;
233
+ assert ! ( is_cuid1 ( cuid1( ) . unwrap( ) ) ) ;
234
234
}
235
235
236
236
#[ test]
237
237
fn cuid_is_not_cuid_zero_len ( ) {
238
- assert ! ( !is_cuid ( "" ) ) ;
238
+ assert ! ( !is_cuid1 ( "" ) ) ;
239
239
}
240
240
241
241
#[ test]
242
242
fn slug_len ( ) {
243
- assert ! ( slug ( ) . unwrap( ) . len( ) == 10 ) ;
243
+ assert ! ( cuid1_slug ( ) . unwrap( ) . len( ) == 10 ) ;
244
244
}
245
245
246
246
#[ test]
247
247
fn slug_is_slug ( ) {
248
- assert ! ( is_slug ( slug ( ) . unwrap( ) ) ) ;
248
+ assert ! ( is_cuid1_slug ( cuid1_slug ( ) . unwrap( ) ) ) ;
249
249
}
250
250
}
Original file line number Diff line number Diff line change 6
6
//! use cuid;
7
7
//!
8
8
//! // Get a v1 CUID
9
- //! println!("{}", cuid::cuid1());
9
+ //! println!("{}", cuid::cuid1().unwrap() );
10
10
//!
11
11
//! // Get a v2 CUID
12
12
//! println!("{}", cuid::cuid2());
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ mod test {
10
10
fn check_cuid_collisions ( ) {
11
11
let mut set = HashSet :: new ( ) ;
12
12
for _ in 0 ..1_200_000 {
13
- let id = cuid:: cuid ( ) . unwrap ( ) ;
13
+ let id = cuid:: cuid1 ( ) . unwrap ( ) ;
14
14
set. insert ( id) ;
15
15
}
16
16
// we generated unique CUIDs
@@ -31,7 +31,7 @@ mod test {
31
31
let t = thread:: spawn ( move || {
32
32
let mut thread_set = HashSet :: new ( ) ;
33
33
for _ in 0 ..ids_per_thread {
34
- let id = cuid:: cuid ( ) . unwrap ( ) ;
34
+ let id = cuid:: cuid1 ( ) . unwrap ( ) ;
35
35
thread_set. insert ( id) ;
36
36
}
37
37
let mut sets = thread_sets. lock ( ) . unwrap ( ) ;
@@ -79,7 +79,7 @@ mod single_thread {
79
79
fn check_slug_collisions ( ) {
80
80
let mut set = HashSet :: new ( ) ;
81
81
for _ in 0 ..1_200_000 {
82
- let id = cuid:: slug ( ) . unwrap ( ) ;
82
+ let id = cuid:: cuid1_slug ( ) . unwrap ( ) ;
83
83
set. insert ( id) ;
84
84
}
85
85
// we had no duplicate slugs
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ use std::collections::HashSet;
6
6
fn check_cuid_length ( ) {
7
7
let mut set = HashSet :: new ( ) ;
8
8
for _ in 0 ..100000 {
9
- let id = cuid:: cuid ( ) . unwrap ( ) ;
9
+ let id = cuid:: cuid1 ( ) . unwrap ( ) ;
10
10
set. insert ( id) ;
11
11
}
12
12
// all CUIDs are of the same length
@@ -19,7 +19,7 @@ fn check_cuid_length() {
19
19
fn check_cuid_slug_length ( ) {
20
20
let mut set = HashSet :: new ( ) ;
21
21
for _ in 0 ..100000 {
22
- let id = cuid:: slug ( ) . unwrap ( ) ;
22
+ let id = cuid:: cuid1_slug ( ) . unwrap ( ) ;
23
23
set. insert ( id) ;
24
24
}
25
25
// all slugs are of the same length
You can’t perform that action at this time.
0 commit comments