I've added the test and a parse_str_fail function.
I couldn't think of any other fail tests to write yet, so have only added one.
Added a tester for false tests, where the code is meant to fail.
Added a test to confirm that a global let is properly addressed.
running 13 tests
test tests::test_empty ... ok
test tests::test_function_call_with_args ... FAILED
test tests::test_function_call ... FAILED
test tests::test_function_with_arg ... ok
test tests::test_function_with_args ... ok
test tests::test_function_with_arg_and_result ... FAILED
test tests::test_function_with_result ... FAILED
test tests::test_function_empty ... ok
test tests::test_functions_empty ... ok
test tests::test_variable ... FAILED
test tests::test_variable_global_let ... ok
test tests::test_variable_string_with_spaces ... FAILED
test tests::test_variable_strings_with_backslashes ... FAILED
I've added the test and a
parse_str_fail
function. I couldn't think of any other fail tests to write yet, so have only added one.