Skip to content

Commit b4a974f

Browse files
committed
No longer provide a feature in test-helper.el
The file isn't a library intended to be loaded with `require`. Instead `ert-runner` loads it using `load`. Other packages that use `ert-runner` also come with a file named test-helper.el and unfortunately many of those also provide `test-helper`, which leads to conflicts. Fixes #390.
1 parent 384d8da commit b4a974f

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

test/elixir-mode-font-test.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
;;; Code:
1010

11-
(require 'test-helper)
12-
1311
(defun elixir-test-face-at (pos &optional content)
1412
"Get the face at POS in CONTENT.
1513

test/elixir-mode-indentation-test.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99

1010
;;; Code:
1111

12-
(require 'test-helper)
13-
1412
(elixir-def-indentation-test indent-use-dot-module-newline
1513
(:tags '(indentation))
1614
"defmodule Foo do

test/elixir-mode-moving-test.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
;;; Code:
44

5-
(require 'test-helper)
6-
75
(ert-deftest beginning-of-defun ()
86
:tags '(moving)
97
(elixir-test-with-temp-buffer

test/test-helper.el

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,4 @@
6363
(defun ert-runner/run-tests-batch-and-exit (selector)
6464
(ert-run-tests-interactively selector)))
6565

66-
(provide 'test-helper)
67-
6866
;;; test-helper.el ends here

0 commit comments

Comments
 (0)