diff options
author | Sean Allred <code@seanallred.com> | 2014-11-08 15:49:17 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-11-08 15:49:17 -0500 |
commit | 6aa21b85ace92b01676c6da66372b409fe639920 (patch) | |
tree | fb536980c22a701ecabcdc8444504b1cae502d3c /test | |
parent | 7c5cc6faf61f58cd1534dcab2c4dbb667c00476d (diff) |
Abstract out method calls
Keeping method calls within `sx-request.el' was causing circular
requirements.
This commit sorts through all of the requirements for each of the files
and ensures that this does not happen. Much of the content removed was
for `sx-request-default-keyword-arguments-alist' and related items. It
was unused, so it was pruned. If it is deemed necessary in the future,
it should be included in `sx-method.el'.
Diffstat (limited to 'test')
-rw-r--r-- | test/tests.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/tests.el b/test/tests.el index 7915ac0..a66394c 100644 --- a/test/tests.el +++ b/test/tests.el @@ -35,6 +35,7 @@ (expand-file-name (format "../../.cask/%s/elpa" emacs-version) sx-test-data-dir)) (package-initialize) + (require 'cl-lib) (require 'sx) (require 'sx-question) |