-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78591a2
commit 7577aca
Showing
7 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
#[cfg(feature = "bigdecimal-impl")] | ||
#[test] | ||
fn impl_primitive_bigdecimal() { | ||
assert_eq!( | ||
<bigdecimal::BigDecimal as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<bigdecimal::BigDecimal as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "smolstr-impl")] | ||
#[test] | ||
fn impl_primitive_smolstr() { | ||
assert_eq!( | ||
<smol_str::SmolStr as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<smol_str::SmolStr as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "uuid-impl")] | ||
#[test] | ||
fn impl_primitive_uuid() { | ||
assert_eq!( | ||
<uuid::Uuid as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<uuid::Uuid as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "url-impl")] | ||
#[test] | ||
fn impl_primitive_url() { | ||
assert_eq!( | ||
<url::Url as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<url::Url as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "ordered-float-impl")] | ||
#[test] | ||
fn impl_primitive_order_float() { | ||
assert_eq!( | ||
<ordered_float::OrderedFloat<f64> as ts_rs::TS>::name(), | ||
<f64 as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<ordered_float::OrderedFloat<f64> as ts_rs::TS>::inline(), | ||
<f64 as ts_rs::TS>::inline() | ||
); | ||
assert_eq!( | ||
<ordered_float::OrderedFloat<f32> as ts_rs::TS>::name(), | ||
<f32 as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<ordered_float::OrderedFloat<f32> as ts_rs::TS>::inline(), | ||
<f32 as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "bson-uuid-impl")] | ||
#[test] | ||
fn impl_primitive_bson_uuid() { | ||
assert_eq!( | ||
<bson::oid::ObjectId as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<bson::oid::ObjectId as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
); | ||
assert_eq!( | ||
<bson::Uuid as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<bson::Uuid as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} | ||
|
||
#[cfg(feature = "semver-impl")] | ||
#[test] | ||
fn impl_primitive_semver() { | ||
assert_eq!( | ||
<semver::Version as ts_rs::TS>::name(), | ||
<String as ts_rs::TS>::name() | ||
); | ||
assert_eq!( | ||
<semver::Version as ts_rs::TS>::inline(), | ||
<String as ts_rs::TS>::inline() | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters