mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
Added test for handling config file values containing "=" in their text
This commit is contained in:
parent
afd6224298
commit
b2b71e6402
@ -38,3 +38,11 @@ teardown() {
|
||||
[ $(get_asdf_config_value "key1") = "value1" ]
|
||||
[ $(get_asdf_config_value "legacy_version_file") = "yes" ]
|
||||
}
|
||||
|
||||
@test "get_config returns config file complete value including '=' symbols" {
|
||||
cat >> $ASDF_CONFIG_FILE <<-'EOM'
|
||||
key3 = VAR=val
|
||||
EOM
|
||||
|
||||
[ $(get_asdf_config_value "key3") = "VAR=val" ]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user