jj-ryu 0.0.1-alpha.11

Stacked PRs for Jujutsu with GitHub/GitLab support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Common test utilities for jj-ryu tests

pub mod fixtures;
pub mod mock_platform;
pub mod temp_repo;

// Re-exports for convenience - not all test binaries use all exports
#[allow(unused_imports)]
pub use fixtures::*;
#[allow(unused_imports)]
pub use mock_platform::MockPlatformService;
#[allow(unused_imports)]
pub use temp_repo::TempJjRepo;