d0868ed4fd
It's pretty obscure and the API is kind of bad. Pulling it out should allow it to evolve independently from the main library.
11 lines
287 B
Rust
11 lines
287 B
Rust
extern crate uuid;
|
|
|
|
use types::test_type;
|
|
|
|
#[test]
|
|
fn test_uuid_params() {
|
|
test_type("UUID", &[(Some(uuid::Uuid::parse_str("a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11").unwrap()),
|
|
"'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11'"),
|
|
(None, "NULL")])
|
|
}
|