aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Allred <code@seanallred.com>2014-11-01 13:36:23 -0400
committerSean Allred <code@seanallred.com>2014-11-01 13:36:23 -0400
commit7ba0f27980a48da21db71c05be179be126c875bc (patch)
treee71bd4c57ae2e0edf686da1f1896c7c377ebc3f9
parentb6b0b8dd82031eb55189ad3bea5eaacd8444b9d5 (diff)
Fix test
-rw-r--r--test/tests.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/tests.el b/test/tests.el
index cbeb80d..e3675de 100644
--- a/test/tests.el
+++ b/test/tests.el
@@ -67,4 +67,10 @@
(ert-deftest test-data-filter-3 ()
"Test the meta-convenience function -- vector structure"
- (equal))
+ (equal
+ '(((1 . 2) (2 . 3) (3 . 4)) ((1 . a) (2 . b) (3 . c)) nil ((1 . alpha) (2 . beta)))
+ (stack-core-filter-data [((1 . 2) (2 . 3) (3 . 4))
+ ((1 . a) (2 . b) (3 . c) (5 . seven))
+ ((should-not-go))
+ ((1 . alpha) (2 . beta))]
+ '(1 2 3))))