mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Move helix-view/tests/*txt files to txts subdirectory (#372)
* Move helix-view/tests/*txt files to txts subdirectory * Rename tests/txts to tests/encoding
This commit is contained in:
parent
f2d8ce3415
commit
c688288881
@ -1136,7 +1136,7 @@ fn test_line_ending() {
|
||||
macro_rules! test_decode {
|
||||
($label:expr, $label_override:expr) => {
|
||||
let encoding = encoding_rs::Encoding::for_label($label_override.as_bytes()).unwrap();
|
||||
let base_path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests");
|
||||
let base_path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/encoding");
|
||||
let path = base_path.join(format!("{}_in.txt", $label));
|
||||
let ref_path = base_path.join(format!("{}_in_ref.txt", $label));
|
||||
assert!(path.exists());
|
||||
@ -1155,7 +1155,7 @@ macro_rules! test_decode {
|
||||
macro_rules! test_encode {
|
||||
($label:expr, $label_override:expr) => {
|
||||
let encoding = encoding_rs::Encoding::for_label($label_override.as_bytes()).unwrap();
|
||||
let base_path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests");
|
||||
let base_path = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/encoding");
|
||||
let path = base_path.join(format!("{}_out.txt", $label));
|
||||
let ref_path = base_path.join(format!("{}_out_ref.txt", $label));
|
||||
assert!(path.exists());
|
||||
|
Loading…
Reference in New Issue
Block a user