From aa3399c9f92d94dfcb79cd9217793be6de43e614 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Tue, 21 Jan 2020 08:07:39 +0300 Subject: [PATCH] chore: rename tests cargo --- Cargo.toml | 4 ++-- {itconfig_tests => itconfig-tests}/Cargo.toml | 0 {itconfig_tests => itconfig-tests}/tests/config_macro.rs | 0 {itconfig_tests => itconfig-tests}/tests/get_env.rs | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename {itconfig_tests => itconfig-tests}/Cargo.toml (100%) rename {itconfig_tests => itconfig-tests}/tests/config_macro.rs (100%) rename {itconfig_tests => itconfig-tests}/tests/get_env.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 9daa147..5f42aad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [workspace] members = [ "itconfig", - "itconfig_tests", + "itconfig-tests", "examples/diesel", "examples/rocket", # nightly "examples/hyper", @@ -9,5 +9,5 @@ members = [ default-members = [ "itconfig", - "itconfig_tests", + "itconfig-tests", ] diff --git a/itconfig_tests/Cargo.toml b/itconfig-tests/Cargo.toml similarity index 100% rename from itconfig_tests/Cargo.toml rename to itconfig-tests/Cargo.toml diff --git a/itconfig_tests/tests/config_macro.rs b/itconfig-tests/tests/config_macro.rs similarity index 100% rename from itconfig_tests/tests/config_macro.rs rename to itconfig-tests/tests/config_macro.rs diff --git a/itconfig_tests/tests/get_env.rs b/itconfig-tests/tests/get_env.rs similarity index 100% rename from itconfig_tests/tests/get_env.rs rename to itconfig-tests/tests/get_env.rs