3d05834dba
The arg was never set. Furthermore as-is shellcheck cannot realistically evaluate the included source. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
9 lines
237 B
Bash
Executable File
9 lines
237 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. ./fstab-helpers
|
|
. ./test/common
|
|
|
|
ASSERT_streq ' deleted' "$(unmangle "$(mangle ' deleted')")"
|
|
ASSERT_streq '\040deleted' "$(mangle "$(unmangle '\040deleted')")"
|
|
ASSERT_streq 'foo\011\040\011bar' "$(mangle $'foo\t \tbar')"
|