From 70d91c770a4bf3ba87ef9a86634fef40c97f2a92 Mon Sep 17 00:00:00 2001 From: Brendan Molloy Date: Thu, 8 Oct 2020 19:44:35 +0200 Subject: [PATCH] Move capture-runner into tests/fixtures --- Cargo.toml | 6 ++++-- .../fixtures/capture-runner}/Cargo.toml | 2 +- {capture-runner => tests/fixtures/capture-runner}/README.md | 0 .../fixtures/capture-runner}/src/main.rs | 0 4 files changed, 5 insertions(+), 3 deletions(-) rename {capture-runner => tests/fixtures/capture-runner}/Cargo.toml (82%) rename {capture-runner => tests/fixtures/capture-runner}/README.md (100%) rename {capture-runner => tests/fixtures/capture-runner}/src/main.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 02d87c7f..408c9e84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,8 +38,10 @@ harness = true edition = "2018" [dev-dependencies] -capture-runner = { path = "capture-runner" } +capture-runner = { path = "tests/fixtures/capture-runner" } serial_test = "0.5.0" [workspace] -members = ["capture-runner"] \ No newline at end of file +members = ["tests/fixtures/capture-runner"] +default-members = ["."] + diff --git a/capture-runner/Cargo.toml b/tests/fixtures/capture-runner/Cargo.toml similarity index 82% rename from capture-runner/Cargo.toml rename to tests/fixtures/capture-runner/Cargo.toml index 3a40b9f0..cf13611a 100644 --- a/capture-runner/Cargo.toml +++ b/tests/fixtures/capture-runner/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" [dependencies] async-trait = "0.1.40" -cucumber_rust = { path = ".." } +cucumber_rust = { path = "../../.." } futures = "0.3.5" diff --git a/capture-runner/README.md b/tests/fixtures/capture-runner/README.md similarity index 100% rename from capture-runner/README.md rename to tests/fixtures/capture-runner/README.md diff --git a/capture-runner/src/main.rs b/tests/fixtures/capture-runner/src/main.rs similarity index 100% rename from capture-runner/src/main.rs rename to tests/fixtures/capture-runner/src/main.rs