We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b55e10 commit 99b2b95Copy full SHA for 99b2b95
test/runtests.jl
@@ -48,3 +48,15 @@ Conda.add_channel("foo", env)
48
49
Conda.rm_channel("foo", env)
50
@test Conda.channels(env) == ["defaults"]
51
+
52
+@testset "Batch install and uninstall" begin
53
+ Conda.add(["affine", "ansi2html"], env)
54
+ installed = Conda._installed_packages(env)
55
+ @test "affine" ∈ installed
56
+ @test "ansi2html" ∈ installed
57
58
+ Conda.rm(["affine", "ansi2html"], env)
59
60
+ @test "affine" ∉ installed
61
+ @test "ansi2html" ∉ installed
62
+end
0 commit comments