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 = [
|
||||
"radicle",
|
||||
"radicle-cli",
|
||||
"radicle-cob",
|
||||
"radicle-crdt",
|
||||
"radicle-crypto",
|
||||
|
|
|
|||
|
|
@ -5,7 +5,3 @@ pub mod commands;
|
|||
pub mod git;
|
||||
pub mod project;
|
||||
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::test::fixtures;
|
||||
|
||||
use crate::testing::TestFormula;
|
||||
mod framework;
|
||||
use framework::TestFormula;
|
||||
|
||||
/// Run a CLI test file.
|
||||
fn test(
|
||||
Loading…
Reference in New Issue