From 0be8a499fa29e860e984cad61a721be9ad28026e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Dec 2019 12:29:51 +0100 Subject: Move code for testing to submodule Signed-off-by: Matthias Beyer --- src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d0fc056..eabeaa5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -43,10 +43,7 @@ pub mod vcalendar; pub mod vevent; #[cfg(test)] -pub mod testdata; - -#[cfg(test)] -pub mod testutils; +pub mod testing; pub use crate::component::IcalComponent; pub use crate::duration::IcalDuration; -- cgit v1.2.3 From d4f30821e72c5f257db52b61d8448a49df405182 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 20 Dec 2019 12:46:52 +0100 Subject: Make utils module private Signed-off-by: Matthias Beyer --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index eabeaa5..89c64df 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -38,9 +38,9 @@ pub mod duration; pub mod property; pub mod time; pub mod timezone; -pub mod utils; pub mod vcalendar; pub mod vevent; +mod utils; #[cfg(test)] pub mod testing; -- cgit v1.2.3