default.bats 162 B

12345678910
  1. #!/usr/bin/env bats
  2. @test "dovecot should be running" {
  3. ps axu | grep -q 'doveco[t]'
  4. }
  5. @test "doveconf should run without errors" {
  6. doveconf > /dev/null
  7. }