Forwarded upstream: https://github.com/jorgenschaefer/elpy/pull/2031 diff --git a/test/elpy-config--insert-help-test.el b/test/elpy-config--insert-help-test.el index bb293ff..2584fd4 100644 --- a/test/elpy-config--insert-help-test.el +++ b/test/elpy-config--insert-help-test.el @@ -2,6 +2,6 @@ ;; with output. We will test its constituent functions later, and just ;; make sure it doesn't throw an error here. -(ert-deftest elpy-config-should-not-fail () +(ert-deftest elpy-config-should-not-fail-insert-help () (elpy-testcase () (elpy-config--insert-help))) diff --git a/test/elpy-library-root-test.el b/test/elpy-library-root-test.el index fdc88b2..2f7484c 100644 --- a/test/elpy-library-root-test.el +++ b/test/elpy-library-root-test.el @@ -4,7 +4,7 @@ (should (f-equal? (elpy-library-root) project-root)))) -(ert-deftest elpy-library-root-should-find-current-directory () +(ert-deftest elpy-library-root-should-find-current-directory-2 () (elpy-testcase ((:project project-root "p1/p2/test.py" "p1/p2/__init__.py" diff --git a/test/elpy-open-and-indent-line-above-test.el b/test/elpy-open-and-indent-line-above-test.el index d846712..790dd26 100644 --- a/test/elpy-open-and-indent-line-above-test.el +++ b/test/elpy-open-and-indent-line-above-test.el @@ -1,4 +1,4 @@ -(ert-deftest elpy-open-and-indent-line-below () +(ert-deftest elpy-open-and-indent-line-above () (elpy-testcase () (elpy-enable) (python-mode) diff --git a/test/elpy-rpc-get-usages-test.el b/test/elpy-rpc-get-usages-test.el index 85f0ad4..be5d7c5 100644 --- a/test/elpy-rpc-get-usages-test.el +++ b/test/elpy-rpc-get-usages-test.el @@ -1,4 +1,4 @@ -(ert-deftest elpy-rpc-get-completions () +(ert-deftest elpy-rpc-get-completions-usages () (elpy-testcase () (mletf* ((called-args nil) (elpy-rpc (&rest args) (setq called-args args))) diff --git a/test/elpy-rpc-test.el b/test/elpy-rpc-test.el index 8b5bdca..3ff6965 100644 --- a/test/elpy-rpc-test.el +++ b/test/elpy-rpc-test.el @@ -17,7 +17,7 @@ (should (equal error 'elpy-rpc--default-error-callback)))) (elpy-rpc "test-method" nil 'success)))) -(ert-deftest elpy-rpc-should-use-default-without-error-callback () +(ert-deftest elpy-rpc-should-use-default-without-error-callback-2 () (elpy-testcase () (mletf* ((elpy-rpc--call-blocking (method params) e773e9dae763a80d3cde68d'>mcron.scm
AgeCommit message (Expand)Author
2021-10-09Move (gnu home-services) to (gnu home services)....* gnu/home-services.scm (%guix-home-root-directory): Replace gnu/home-services.scm with "gnu/home/services.scm". Rename to gnu/home/services.scm. * gnu/local.mk (GNU_SYSTEM_MODULES): Rename gnu/home-services.scm to gnu/home/services.scm. * doc/he-config-bare-bones.scm: Replace (gnu home-services) with (gnu home services). * gnu/home.scm: Same. * gnu/home/services/fontutils.scm: Same. * gnu/home/services/mcron.scm: Same. * gnu/home/services/shells.scm: Same. * gnu/home/services/shepherd.scm: Same. * gnu/home/services/symlink-manager.scm: Same. * gnu/home/services/xdg.scm: Same. * guix/scripts/home.scm: Same. * guix/self.scm: Same. Oleg Pykhalov
2021-10-08gnu: Move (gnu home-services) to (gnu home services)....* gnu/home-services/configuration.scm: Move the content ... * gnu/home/services/configuration.scm: ... here. * doc/guix.texi: Replace (gnu home-services mcron) with (gnu home services mcron). Replace (gnu home-services) with (gnu home services). * gnu/home.scm: Replace (gnu home-services fontutils) with (gnu services fontutils). Replace (gnu home-services shells) with (gnu home services shells). Replace (gnu home-services symlink-manager) with (gnu home services symlink-manager). Replace (gnu home-services xdg) with (gnu home services xdg). * gnu/home-services/fontutils.scm: Rename to gnu/services/fontutils.scm. * gnu/home-services/mcron.scm: Move to gnu/home/services/mcron.scm. Replace (gnu home-services shepherd) with (gnu home services shepherd). * gnu/home-services.scm (%service-type-path): Search home services in "gnu/services". * gnu/home-services/shells.scm: Replace (gnu home-services configuration) with (gnu home services configuration). Rename to gnu/home/services/shells.scm. Replace (gnu home-services utils) with (gnu home services utils). * gnu/home-services/shepherd.scm: Move to gnu/home/services/shepherd.scm. * gnu/home-services/symlink-manager.scm: Rename to gnu/home/services/symlink-manager.scm. * gnu/home-services/utils.scm: Rename to gnu/home/services/utils.scm. * gnu/home-services/xdg.scm: Rename to gnu/home/services/xdg.scm. * guix/scripts/home/import.scm: Replace (gnu home-services bash) with (gnu home services bash). * gnu/home-services.scm: Update documentation string. * doc/he-config-bare-bones.scm: Apply new (gnu home-services ...) modules location. * gnu/local.mk (GNU_SYSTEM_MODULES): Same. Oleg Pykhalov