diff --git a/images/ubuntu/scripts/tests/Databases.Tests.ps1 b/images/ubuntu/scripts/tests/Databases.Tests.ps1 index 6038824d3216..7dab019db564 100644 --- a/images/ubuntu/scripts/tests/Databases.Tests.ps1 +++ b/images/ubuntu/scripts/tests/Databases.Tests.ps1 @@ -37,3 +37,14 @@ Describe "MySQL" { "sudo systemctl stop mysql" | Should -ReturnZeroExitCode } } + +Describe "SQLite3" { + It "SQLite3 CLI" { + "sqlite3 --version" | Should -ReturnZeroExitCode + } + + It "SQLite3 Library Loading" { + $dllPath = "/usr/lib/x86_64-linux-gnu/libsqlite3.so" + Test-Path $dllPath | Should -Be $true + } +}