diff --git a/tests/languages/julia_test.py b/tests/languages/julia_test.py index c74bd257..2a5d09e7 100644 --- a/tests/languages/julia_test.py +++ b/tests/languages/julia_test.py @@ -30,6 +30,7 @@ def test_julia_hook(tmp_path): expected = (0, b'Hello, world!\n') assert run_language(tmp_path, julia, 'src/main.jl') == expected + def test_julia_hook_version(tmp_path): code = """ using Example @@ -45,6 +46,7 @@ def test_julia_hook_version(tmp_path): version='1.10.10', ) == expected + def test_julia_hook_with_startup(tmp_path): depot_path = tmp_path.joinpath('depot') depot_path.joinpath('config').mkdir(parents=True) @@ -55,6 +57,7 @@ def test_julia_hook_with_startup(tmp_path): with mock.patch.dict(os.environ, {'JULIA_DEPOT_PATH': depo_path_var}): test_julia_hook(tmp_path) + def test_julia_hook_manifest(tmp_path): code = """ using Example