-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: don't have cargo install test tools
I noticed that `cargo install --path .` will install the new `fake-editor` and `fake-diff-editor` binaries. We don't want that, so let's move them into a separate crate. The tests still find them without needing any modification.
- Loading branch information
1 parent
5e729ec
commit 1ed05fa
Showing
5 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "jujutsu-testing" | ||
version = "0.4.0" | ||
authors = ["Martin von Zweigbergk <martinvonz@google.com>"] | ||
edition = "2021" | ||
rust-version = "1.57" | ||
license = "Apache-2.0" | ||
description = "Testing library for Jujutsu (an experimental VCS)" | ||
homepage = "https://github.com/martinvonz/jj" | ||
repository = "https://github.com/martinvonz/jj" | ||
documentation = "https://docs.rs/jujutsu" | ||
readme = "../README.md" | ||
|
||
[[bin]] | ||
name = "fake-editor" | ||
path = "src/fake-editor.rs" | ||
|
||
[[bin]] | ||
name = "fake-diff-editor" | ||
path = "src/fake-diff-editor.rs" | ||
|
||
[dependencies] | ||
clap = { version = "3.1.10", features = ["derive"] } | ||
itertools = "0.10.3" |
File renamed without changes.
File renamed without changes.