Skip to content

Commit

Permalink
Hygiene test: Extend import test
Browse files Browse the repository at this point in the history
Now that values (CqlValue etc) are manually re-exported in lib.rs
we should test the correctness of this re-export.
  • Loading branch information
Lorak-mmk committed Feb 5, 2025
1 parent 7986a62 commit 3db46f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scylla/tests/integration/hygiene.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,10 @@ macro_rules! test_crate {
#[allow(unused_imports)]
use _scylla::frame::response::result::{CollectionType, ColumnType, NativeType, UserDefinedType};
#[allow(unused_imports)]
use _scylla::value::CqlValue;
use _scylla::value::{
Counter, CqlDate, CqlDecimal, CqlDecimalBorrowed, CqlDuration, CqlTime, CqlTimestamp,
CqlTimeuuid, CqlValue, CqlVarint, CqlVarintBorrowed, MaybeUnset, Row, Unset, ValueOverflow
};
}

// Test attributes for value struct with name flavor
Expand Down

0 comments on commit 3db46f6

Please sign in to comment.