refractor: tests/bats -> tests/integration
This commit is contained in:
parent
9d74168be2
commit
33681e14f2
49 changed files with 5 additions and 5 deletions
34
tests/integration/flatpak.bats
Normal file
34
tests/integration/flatpak.bats
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/env bats
|
||||
# apparmor.d - Full set of apparmor profiles
|
||||
# Copyright (C) 2024 Alexandre Pujol <alexandre@pujol.io>
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
load common
|
||||
|
||||
@test "flatpak: List installed applications, ignoring runtimes" {
|
||||
flatpak list --app
|
||||
}
|
||||
|
||||
@test "flatpak: Install an application from a remote source" {
|
||||
flatpak install --noninteractive org.vim.Vim
|
||||
}
|
||||
|
||||
@test "flatpak: Show information about an installed application" {
|
||||
flatpak info org.vim.Vim
|
||||
}
|
||||
|
||||
@test "flatpak: Run an installed application" {
|
||||
flatpak run org.vim.Vim
|
||||
}
|
||||
|
||||
@test "flatpak: Update all installed applications and runtimes" {
|
||||
flatpak update --noninteractive
|
||||
}
|
||||
|
||||
@test "flatpak: Remove an installed application" {
|
||||
flatpak remove --noninteractive org.vim.Vim
|
||||
}
|
||||
|
||||
@test "flatpak: Remove all unused applications" {
|
||||
flatpak remove --unused
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue