You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using quotes inside here doc in the context of fake, the quote will disappear from the output of the faked function. This is different from what is expected from using here doc.
Here is an exemple:
test_should_succeed_but_will_fail() {
fake toto <<EOF"test"EOF
assert 'toto | grep \"''should have found quote but seems like fake swallowed it'
}
test_will_succeed() {
fake toto <<EOF\"test\"EOF
assert 'toto | grep \"'
}
The text was updated successfully, but these errors were encountered:
When using quotes inside here doc in the context of fake, the quote will disappear from the output of the faked function. This is different from what is expected from using here doc.
Here is an exemple:
The text was updated successfully, but these errors were encountered: