@@ -1298,27 +1298,32 @@ end
1298
1298
1299
1299
@testset " Install missing packages via hooks" begin
1300
1300
@testset " Parse AST for packages" begin
1301
- mods = REPL. modules_to_be_loaded (Meta . parse (" using Foo" ))
1301
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" using Foo" ))
1302
1302
@test mods == [:Foo ]
1303
- mods = REPL. modules_to_be_loaded (Meta . parse (" import Foo" ))
1303
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" import Foo" ))
1304
1304
@test mods == [:Foo ]
1305
- mods = REPL. modules_to_be_loaded (Meta . parse (" using Foo, Bar" ))
1305
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" using Foo, Bar" ))
1306
1306
@test mods == [:Foo , :Bar ]
1307
- mods = REPL. modules_to_be_loaded (Meta . parse (" import Foo, Bar" ))
1307
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" import Foo, Bar" ))
1308
1308
@test mods == [:Foo , :Bar ]
1309
1309
1310
- mods = REPL. modules_to_be_loaded (Meta . parse (" if false using Foo end" ))
1310
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" if false using Foo end" ))
1311
1311
@test mods == [:Foo ]
1312
- mods = REPL. modules_to_be_loaded (Meta . parse (" if false if false using Foo end end" ))
1312
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" if false if false using Foo end end" ))
1313
1313
@test mods == [:Foo ]
1314
- mods = REPL. modules_to_be_loaded (Meta . parse (" if false using Foo, Bar end" ))
1314
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" if false using Foo, Bar end" ))
1315
1315
@test mods == [:Foo , :Bar ]
1316
- mods = REPL. modules_to_be_loaded (Meta . parse (" if false using Foo: bar end" ))
1316
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" if false using Foo: bar end" ))
1317
1317
@test mods == [:Foo ]
1318
1318
1319
- mods = REPL. modules_to_be_loaded (Meta . parse (" import Foo.bar as baz" ))
1319
+ mods = REPL. modules_to_be_loaded (Base . parse_input_line (" import Foo.bar as baz" ))
1320
1320
@test mods == [:Foo ]
1321
- mods = REPL. modules_to_be_loaded (Meta. parse (" using .Foo" ))
1322
- @test mods == []
1321
+ mods = REPL. modules_to_be_loaded (Base. parse_input_line (" using .Foo" ))
1322
+ @test isempty (mods)
1323
+
1324
+ mods = REPL. modules_to_be_loaded (Base. parse_input_line (" # comment" ))
1325
+ @test isempty (mods)
1326
+ mods = REPL. modules_to_be_loaded (Base. parse_input_line (" Foo" ))
1327
+ @test isempty (mods)
1323
1328
end
1324
1329
end
0 commit comments