aboutsummaryrefslogtreecommitdiffstats
path: root/tests/describe.bats
blob: 328516313b76cebce749b01c25515214bf82f484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@test "Name and description of firefox desktop file are properly extracted" {
  run ../sway-launcher-desktop.sh describe data/firefox.desktop
  [ "$status" -eq 0 ]
  [[ ${lines[0]} =~ "Firefox" ]]
  [[ ${lines[1]} =~ "Browse the World Wide Web" ]]
}

@test "Name and description of awk command should be given" {
  run ../sway-launcher-desktop.sh describe awk command
  [ "$status" -eq 0 ]
  [[ ${lines[0]} =~ "awk" ]]
  [[ ${lines[1]} =~ "pattern scanning and processing language" ]]
}