Move CLI command tests to integration tests
Signed-off-by: Alexis Sellier <alexis@radicle.xyz>
This commit is contained in:
parent
e63f334890
commit
c33aa87589
|
|
@ -13,6 +13,7 @@ members = [
|
||||||
]
|
]
|
||||||
default-members = [
|
default-members = [
|
||||||
"radicle",
|
"radicle",
|
||||||
|
"radicle-cli",
|
||||||
"radicle-cob",
|
"radicle-cob",
|
||||||
"radicle-crdt",
|
"radicle-crdt",
|
||||||
"radicle-crypto",
|
"radicle-crypto",
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,3 @@ pub mod commands;
|
||||||
pub mod git;
|
pub mod git;
|
||||||
pub mod project;
|
pub mod project;
|
||||||
pub mod terminal;
|
pub mod terminal;
|
||||||
#[cfg(test)]
|
|
||||||
mod testing;
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests;
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
mod cli;
|
|
||||||
|
|
@ -4,7 +4,8 @@ use std::path::Path;
|
||||||
use radicle::profile::Profile;
|
use radicle::profile::Profile;
|
||||||
use radicle::test::fixtures;
|
use radicle::test::fixtures;
|
||||||
|
|
||||||
use crate::testing::TestFormula;
|
mod framework;
|
||||||
|
use framework::TestFormula;
|
||||||
|
|
||||||
/// Run a CLI test file.
|
/// Run a CLI test file.
|
||||||
fn test(
|
fn test(
|
||||||
Loading…
Reference in New Issue