branch: elpa/emacsql commit dce6736e04f39762184df5fa275c78b260caf3ce Author: Christopher Wellons <well...@nullprogram.com> Commit: Christopher Wellons <well...@nullprogram.com>
Oops, add new MySQL module to the Makefile. --- Makefile | 2 +- tests/emacsql-external-tests.el | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 233c883700..80d0a04a59 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ PACKAGE := emacsql VERSION := $(shell $(CASK) version) EL = emacsql-compiler.el emacsql-system.el emacsql.el \ - emacsql-sqlite.el emacsql-psql.el + emacsql-sqlite.el emacsql-psql.el emacsql-mysql.el ELC = $(EL:.el=.elc) EXTRA_DIST = README.md UNLICENSE diff --git a/tests/emacsql-external-tests.el b/tests/emacsql-external-tests.el index 10c83c38d4..d642ad4f2e 100644 --- a/tests/emacsql-external-tests.el +++ b/tests/emacsql-external-tests.el @@ -5,6 +5,7 @@ (require 'emacsql) (require 'emacsql-sqlite) (require 'emacsql-psql) +(require 'emacsql-mysql) (defvar emacsql-tests-timeout 4 "Be aggressive about not waiting on subprocesses in unit tests.") @@ -35,7 +36,7 @@ (should (equal (emacsql db [:select * :from foo]) '((1) (2) (3)))))))) -(ert-deftest emacsql-foreign-system () +(ert-deftest emacsql-foreign-key () "Tests that foreign keys work properly through Emacsql." (let ((emacsql-global-timeout emacsql-tests-timeout)) (dolist (factory emacsql-tests-connection-factories)