Clojure, midje: тест lein - работает дважды

Я просто играю с midje в каком-то проекте. core_test.clj:

(ns pcc.core-test
  (:use [clojure.repl])
  (:require [clojure.test :refer :all]
        [clojure.string :as string]
        [green-tags.core :as core]
        [me.raynes.fs :as fs]
        [pcc.core :refer :all]
        [midje.sweet :refer :all]))

(println "You should expect to see one failure below.")

(facts
 "About miscellaneous functions"
 (fact
  "Returns a zero padded string representation of integer"
  (zero-pad 1 4) => "0001"
  (zero-pad 15111 4) => "15111"
  (zero-pad 2 5) => "00002")

 (fact
  "Returns a path stripped of extension, if any"
  (strip-file-ext "/alfa/bravo/charlie.dat") => "/alfa/bravo/charlie"
  (strip-file-ext "/alfa/bravo/charlie") => "/alfa/bravo/charlie"
  (strip-file-ext "/alfa/bravo/charlie/") => "/alfa/bravo/charlie"
  (strip-file-ext "/alfa/bra.vo/charlie.dat") => "/alfa/bra.vo/charlie"))

Выход теста на лейн:

$ lein test
You should expect to see one failure below.

FAIL "About miscellaneous functions - Returns a path stripped of extension, if any" at (core_test.clj:24)
  Expected: "/alfa/bravo/charlie"
    Actual: "/alfa/bravo/charlie/"
You should expect to see one failure below.

FAIL "About miscellaneous functions - Returns a path stripped of extension, if any" at (core_test.clj:24)
Expected: "/alfa/bravo/charlie"
  Actual: "/alfa/bravo/charlie/"

lein test user

Ran 0 tests containing 0 assertions.
0 failures, 0 errors.
$

Это просто работает дважды. Любопытно, что основной проект lein new midje запускается один раз, но я не вижу существенной разницы.

1 ответ

Согласно https://github.com/marick/Midje/wiki/A-tutorial-introduction midje предназначен для выполнения теста через lein midje команда, а не lein test,

Из кода, который вы вставили, вам не нужно [clojure.test :refer :all] на ваше require

Для создания нового набора тестов Midje правильная команда lein new midje <<projectname>> не уверен, что вы просто преждевременно закрыли жирный тег в своем сообщении

Надеюсь, поможет

Другие вопросы по тегам