diff options
author | Kyle Meyer <kyle@kyleam.com> | 2016-02-28 03:39:12 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2016-02-28 03:46:06 -0500 |
commit | 6b4ff95035c25d29680f13b34757c4b31a71ed9b (patch) | |
tree | ed7b3e9cf525e88e1fb487ebdfd94f8802020bc0 /test-snakemake.el | |
parent | 89741b59f6392a357b3a21ee21c8de2e536b092a (diff) | |
download | snakemake-mode-6b4ff95035c25d29680f13b34757c4b31a71ed9b.tar.gz |
snakemake-all-rules: New command
Diffstat (limited to 'test-snakemake.el')
-rw-r--r-- | test-snakemake.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test-snakemake.el b/test-snakemake.el index 03cf1f1..0f83821 100644 --- a/test-snakemake.el +++ b/test-snakemake.el @@ -672,6 +672,13 @@ rule abc: (snakemake-with-temp-dir (snakemake-rule-targets))))) +(ert-deftest test-snakemake/all-rules () + "Test `snakemake-all-rules'." + (should + (equal '("aa" "bb" "cc_wildcards" "dd_subdir") + (snakemake-with-temp-dir + (snakemake-all-rules))))) + (ert-deftest test-snakemake/file-targets () "Test `snakemake-file-targets'." (should |