diff options
author | Sean Allred <code@seanallred.com> | 2014-11-01 13:36:23 -0400 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-01 13:36:23 -0400 |
commit | 7ba0f27980a48da21db71c05be179be126c875bc (patch) | |
tree | e71bd4c57ae2e0edf686da1f1896c7c377ebc3f9 /test | |
parent | b6b0b8dd82031eb55189ad3bea5eaacd8444b9d5 (diff) |
Fix test
Diffstat (limited to 'test')
-rw-r--r-- | test/tests.el | 8 |
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)))) |