From 09c330312fc4f8b2d427f274ced9e10fb94be15d Mon Sep 17 00:00:00 2001 From: Xavier Moffett Date: Sat, 19 Jul 2025 02:36:58 -0400 Subject: [PATCH] chore(fix): Use integration testing --- src/lib.rs | 1 - src/test.rs => tests/integration.rs | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) rename src/test.rs => tests/integration.rs (98%) diff --git a/src/lib.rs b/src/lib.rs index ad68b14..7e7a206 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -76,4 +76,3 @@ pub mod simplebyteunit; mod input; mod output; -mod test; diff --git a/src/test.rs b/tests/integration.rs similarity index 98% rename from src/test.rs rename to tests/integration.rs index 88ac756..922e687 100644 --- a/src/test.rs +++ b/tests/integration.rs @@ -9,7 +9,9 @@ * * http://www.apache.org/licenses/LICENSE-2.0 */ -use crate::simplebyteunit::*; + +use simplebyteunit::simplebyteunit::*; +use simplebyteunit::simplebyteunit::ToByteUnit; const POSITIVE_5B: i64 = 5000; const NEGATIVE_5B: i64 = -5000;