diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-28 11:44:27 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-28 11:56:52 -0500 |
commit | 4f253dac766e5d67c9cf0979d77e2e793b3ced34 (patch) | |
tree | 4dc325ab1adbee10d28ed22d7351c114794066db | |
parent | c47351925529d72164c78dce685a01b0004ebcd4 (diff) | |
download | snakemake-mode-4f253dac766e5d67c9cf0979d77e2e793b3ced34.tar.gz |
Rename test file for MELPA filtering
MELPA excludes test.el, tests.el, *-test.el, and *-tests.el.
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | snakemake-test.el (renamed from test-snakemake.el) | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -11,7 +11,7 @@ all: $(elcs) $(AUTOLOADS_FILE) .PHONY: test test: - @$(BATCH) -L . -l test-snakemake \ + @$(BATCH) -L . -l snakemake-test \ --eval "(ert-run-tests-batch-and-exit '(not (tag interactive)))" $(AUTOLOADS_FILE): $(main_el) diff --git a/test-snakemake.el b/snakemake-test.el index 0f83821..36ee489 100644 --- a/test-snakemake.el +++ b/snakemake-test.el @@ -1,4 +1,4 @@ -;;; test-snakemake.el --- Tests for snakemake{,-mode}.el +;;; snakemake-test.el --- Test snakemake{,-mode}.el ;; Copyright (C) 2015-2016 Kyle Meyer <kyle@kyleam.com> @@ -755,5 +755,5 @@ rule abc: (re-search-forward "rule cc_wildcards:") (snakemake-rule-at-point 'target))))) -(provide 'test-snakemake) -;;; test-snakemake.el ends here +(provide 'snakemake-test) +;;; snakemake-test.el ends here |