Fix tests for sqlite

- sqlite executable used by ob-sqlite is 'sqlite3'
- require ob-sqlite for test
This commit is contained in:
Robert Klein 2018-09-09 14:27:20 +02:00 committed by Nicolas Goaziou
parent 5fe1650034
commit 1e6ab19b2a
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
(org-test-for-executable "sqlite")
(org-test-for-executable "sqlite3")
(require 'ob-sqlite)
(unless (featurep 'ob-sqlite)
(signal 'missing-test-dependency "Support for sqlite code blocks"))