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;