summaryrefslogtreecommitdiffstats
path: root/src/options/set.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/set.rs')
-rw-r--r--src/options/set.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/options/set.rs b/src/options/set.rs
index be3d74a1..09327a0b 100644
--- a/src/options/set.rs
+++ b/src/options/set.rs
@@ -143,6 +143,7 @@ pub fn set_options(
file_modified_label,
file_removed_label,
file_renamed_label,
+ file_regex_replacement,
right_arrow,
hunk_label,
file_style,
@@ -704,6 +705,7 @@ pub mod tests {
file-modified-label = xxxyyyzzz
file-removed-label = xxxyyyzzz
file-renamed-label = xxxyyyzzz
+ file-transformation = s/foo/bar/
right-arrow = xxxyyyzzz
file-style = black black
hunk-header-decoration-style = black black
@@ -771,6 +773,7 @@ pub mod tests {
assert_eq!(opt.file_renamed_label, "xxxyyyzzz");
assert_eq!(opt.right_arrow, "xxxyyyzzz");
assert_eq!(opt.file_style, "black black");
+ assert_eq!(opt.file_regex_replacement, Some("s/foo/bar/".to_string()));
assert_eq!(opt.hunk_header_decoration_style, "black black");
assert_eq!(opt.hunk_header_style, "black black");
assert_eq!(opt.keep_plus_minus_markers, true);