1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
;;; inferior-haskell-tests.el --- tests for collapse module -*- lexical-binding: t -*-
1;4803;0c
;; Copyright © 2017 Vasantha Ganesh K. <vasanthaganesh.k@tuta.io>
;; This file is not part of GNU Emacs.
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
(require 'ert)
(require 'inf-haskell)
(require 'haskell-string)
(require 'haskell-test-utils)
(ert-deftest test-run-haskell ()
(haskell-unconditional-kill-buffer "*haskell*")
(run-haskell)
(let* ((times 5)
(ans nil))
(setq ans (inferior-haskell-get-result "1 + 1"))
(while (and (> times 0)
(not (equal ans "2")))
(setq times (1- times))
(setq ans (inferior-haskell-get-result "1 + 1")))
(should (equal ans
"2"))))
(ert-deftest test-inferior-haskell-buffer ()
"Check if the inferior haskell buffer has been started"
(haskell-unconditional-kill-buffer "*haskell*")
(run-haskell)
(should (buffer-live-p inferior-haskell-buffer)))
(ert-deftest test-inferior-haskell-root-dir ()
"Check if the root dir of the loaded file/project is not nil
This way we test is the file is loaded or not"
(haskell-unconditional-kill-buffer "*haskell*")
(run-haskell)
(should (file-directory-p inferior-haskell-root-dir)))
|