Skip to content

Commit

Permalink
Remove unused tests
Browse files Browse the repository at this point in the history
  • Loading branch information
10sr committed Jan 8, 2019
1 parent 11e8d6b commit 475e217
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions ert-tests/editorconfig-core.el
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
(require 'editorconfig-core)

(ert-deftest test-editorconfig-core--remove-duplicate ()
(should (equal (editorconfig-core--remove-duplicate '(("a" . 1) ("b" . 2) ("c" . 3) ("b" . 4)))
'(("a" . 1) ("b" . 4) ("c" . 3))))
(should (equal (editorconfig-core--remove-duplicate '(("a" . 1) ("b" . 2) ("c" . 3)))
'(("a" . 1) ("b" . 2) ("c" . 3))))
(should (equal (editorconfig-core--remove-duplicate nil)
nil))
)


(ert-deftest test-editorconfig-core--get-handles ()
(let* ((fixtures (concat default-directory
Expand Down

0 comments on commit 475e217

Please sign in to comment.