diff --git a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs index f135a91..75bb035 100644 --- a/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs +++ b/01.workspace/heave/src/fun/sqlite_map_row_to_attribute.rs @@ -18,8 +18,3 @@ pub fn run(row: &rusqlite::Row) -> rusqlite::Result { }; Ok(Attribute { id, value }) } - -// #[cfg(test)] -// mod unit_tests { -// use super::*; -// } diff --git a/01.workspace/heave/src/fun/sqlite_map_row_to_entity.rs b/01.workspace/heave/src/fun/sqlite_map_row_to_entity.rs index 99ee577..a225f5f 100644 --- a/01.workspace/heave/src/fun/sqlite_map_row_to_entity.rs +++ b/01.workspace/heave/src/fun/sqlite_map_row_to_entity.rs @@ -13,8 +13,3 @@ pub fn run(row: &rusqlite::Row) -> rusqlite::Result { }; Ok(entity) } - -// #[cfg(test)] -// mod unit_tests { -// use super::*; -// } diff --git a/01.workspace/heave/src/imp/bool_from_value.rs b/01.workspace/heave/src/imp/bool_from_value.rs index 0257530..f73ff06 100644 --- a/01.workspace/heave/src/imp/bool_from_value.rs +++ b/01.workspace/heave/src/imp/bool_from_value.rs @@ -8,6 +8,3 @@ impl From for bool { } } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/f64_from_value.rs b/01.workspace/heave/src/imp/f64_from_value.rs index 983664c..7b5d9e2 100644 --- a/01.workspace/heave/src/imp/f64_from_value.rs +++ b/01.workspace/heave/src/imp/f64_from_value.rs @@ -8,6 +8,3 @@ impl From for f64 { } } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/i64_from_value.rs b/01.workspace/heave/src/imp/i64_from_value.rs index 1cdb441..e969377 100644 --- a/01.workspace/heave/src/imp/i64_from_value.rs +++ b/01.workspace/heave/src/imp/i64_from_value.rs @@ -8,6 +8,3 @@ impl From for i64 { } } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/string_from_value.rs b/01.workspace/heave/src/imp/string_from_value.rs index adf70de..006d3f9 100644 --- a/01.workspace/heave/src/imp/string_from_value.rs +++ b/01.workspace/heave/src/imp/string_from_value.rs @@ -8,6 +8,3 @@ impl From for String { } } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/u64_from_value.rs b/01.workspace/heave/src/imp/u64_from_value.rs index 486dba7..b9ed9b6 100644 --- a/01.workspace/heave/src/imp/u64_from_value.rs +++ b/01.workspace/heave/src/imp/u64_from_value.rs @@ -8,6 +8,3 @@ impl From for u64 { } } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_bool.rs b/01.workspace/heave/src/imp/value_from_bool.rs index 890ed5d..5cdf427 100644 --- a/01.workspace/heave/src/imp/value_from_bool.rs +++ b/01.workspace/heave/src/imp/value_from_bool.rs @@ -5,6 +5,3 @@ impl From for Value { Self::Bool(value) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_f64.rs b/01.workspace/heave/src/imp/value_from_f64.rs index ad6e02f..e12771a 100644 --- a/01.workspace/heave/src/imp/value_from_f64.rs +++ b/01.workspace/heave/src/imp/value_from_f64.rs @@ -5,6 +5,3 @@ impl From for Value { Self::Real(value) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_i64.rs b/01.workspace/heave/src/imp/value_from_i64.rs index b8547ca..a3b1a76 100644 --- a/01.workspace/heave/src/imp/value_from_i64.rs +++ b/01.workspace/heave/src/imp/value_from_i64.rs @@ -5,6 +5,3 @@ impl From for Value { Self::SignedInt(value) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_str.rs b/01.workspace/heave/src/imp/value_from_str.rs index 6498818..6798810 100644 --- a/01.workspace/heave/src/imp/value_from_str.rs +++ b/01.workspace/heave/src/imp/value_from_str.rs @@ -5,6 +5,3 @@ impl From<&str> for Value { Self::Text(String::from(value)) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_string.rs b/01.workspace/heave/src/imp/value_from_string.rs index 7f6f835..6815911 100644 --- a/01.workspace/heave/src/imp/value_from_string.rs +++ b/01.workspace/heave/src/imp/value_from_string.rs @@ -5,6 +5,3 @@ impl From for Value { Self::Text(value) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; } diff --git a/01.workspace/heave/src/imp/value_from_u64.rs b/01.workspace/heave/src/imp/value_from_u64.rs index 9f22216..e073604 100644 --- a/01.workspace/heave/src/imp/value_from_u64.rs +++ b/01.workspace/heave/src/imp/value_from_u64.rs @@ -5,6 +5,3 @@ impl From for Value { Self::UnsignedInt(value) } } - -// #[cfg(test)] -// mod unit_tests { use super::*; }