3 test_description
='Tests whether perf-lib facilities work'
8 test_perf
'test_perf_default_repo works' '
9 foo=$(git rev-parse HEAD) &&
13 test_checkout_worktree
15 test_perf
'test_checkout_worktree works' '
16 wt=$(find . | wc -l) &&
17 idx=$(git ls-files | wc -l) &&
24 test_expect_success
'test_export works' '
26 test "$foo" = "$(git rev-parse HEAD)" &&
31 test_perf
'export a weird var' '
32 bar="weird # variable" &&
36 test_expect_success
'test_export works with weird vars' '
38 test "$bar" = "weird # variable"
41 test_perf
'important variables available in subshells' '
43 test -n "$TEST_DIRECTORY" &&
44 test -n "$TRASH_DIRECTORY" &&
45 test -n "$GIT_BUILD_DIR"
48 test_perf
'test-lib-functions correctly loaded in subshells' '
50 test_path_is_file a &&