Skip to content

Instantly share code, notes, and snippets.

@minostro
Created November 26, 2013 20:26
Show Gist options
  • Save minostro/7665602 to your computer and use it in GitHub Desktop.
Save minostro/7665602 to your computer and use it in GitHub Desktop.
(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