Created
November 26, 2013 20:26
-
-
Save minostro/7665602 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns immutant-demo-fntest.integration-test | |
(:use clojure.test) | |
(:require [clj-http.client :as http] | |
[fntest.core :as fnt])) | |
; (deftest first-integration-test | |
; (testing "jbos" | |
; (is (= "hola" (util/app-uri))))) | |
(use-fixtures :once | |
(compose-fixtures | |
fnt/with-jboss | |
(fnt/with-deployment "immutant-demo-fntest.clj" {:root "./", :context-path "/foo"}))) | |
(deftest first-integration-test | |
(testing "jboss" | |
(is (= 1 1)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment