Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 16, 2023
1 parent d393041 commit 1661164
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/justfile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,15 +711,15 @@ foo a="b\t":
}

test! {
parse_multiple,
r"
parse_multiple,
r"
a:
b:
",
r"a:
r"a:
b:",
}
}

test! {
parse_variadic,
Expand Down Expand Up @@ -764,8 +764,8 @@ export a := "hello"
}

test! {
parse_alias_after_target,
r"
parse_alias_after_target,
r"
foo:
echo a
alias f := foo
Expand All @@ -774,11 +774,11 @@ r"alias f := foo
foo:
echo a"
}
}

test! {
parse_alias_before_target,
r"
parse_alias_before_target,
r"
alias f := foo
foo:
echo a
Expand All @@ -787,11 +787,11 @@ r"alias f := foo
foo:
echo a"
}
}

test! {
parse_alias_with_comment,
r"
parse_alias_with_comment,
r"
alias f := foo #comment
foo:
echo a
Expand All @@ -800,7 +800,7 @@ r"alias f := foo
foo:
echo a"
}
}

test! {
parse_complex,
Expand Down Expand Up @@ -959,20 +959,20 @@ f x="abc":
}

test! {
parameter_default_raw_string,
r"
parameter_default_raw_string,
r"
f x='abc':
",
r"f x='abc':",
}
r"f x='abc':",
}

test! {
parameter_default_backtick,
r"
parameter_default_backtick,
r"
f x=`echo hello`:
",
r"f x=`echo hello`:",
}
r"f x=`echo hello`:",
}

test! {
parameter_default_concatenation_string,
Expand Down

0 comments on commit 1661164

Please sign in to comment.