We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 015a514 commit 3501e9bCopy full SHA for 3501e9b
test/matrices.jl
@@ -30,6 +30,11 @@ remove_from_group(Matrix, USER_GROUP)
30
@test_throws ArgumentError remove_from_group(Matrix, USER_GROUP)
31
@test_throws ArgumentError remove_from_group(Matrix, Group(:notexists))
32
33
+# remove_from_group alternative interfaces
34
+add_to_groups(Matrix, USER_GROUP)
35
+remove_from_group(Matrix, :user)
36
+@test Matrix ∉ list_matrices(USER_GROUP)
37
+
38
# remove_from_all_groups
39
add_to_groups(Matrix, USER_GROUP, TEST_GROUP)
40
add_to_groups(Tridiagonal, USER_GROUP, TEST_GROUP)
0 commit comments