Skip to content
This repository has been archived by the owner on Jan 28, 2019. It is now read-only.

Add RT.load support for .jnt files #131

Merged
merged 4 commits into from
Apr 9, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Whitespace
arrdem committed Apr 8, 2016
commit 41ada4ba61e3681aa4245f04f88c340334a863c2
2 changes: 0 additions & 2 deletions test/clojure/test_clojure/compilation.clj
Original file line number Diff line number Diff line change
@@ -8,7 +8,6 @@

;; Author: Frantisek Sodomka


(ns clojure.test-clojure.compilation
(:import (clojure.lang Compiler Compiler$CompilerException))
(:require [clojure.test.generative :refer (defspec)]
@@ -22,7 +21,6 @@
;; compile
;; gen-class, gen-interface


(deftest test-compiler-metadata
(let [m (meta #'when)]
(are [x y] (= x y)
9 changes: 3 additions & 6 deletions test/clojure/test_clojure/evaluation.clj
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@
;; the terms of this license.
;; You must not remove this notice, or any other, from this software.


;; Tests for the Clojure functions documented at the URL:
;;
;; http://clojure.org/Evaluation
@@ -15,10 +14,9 @@
;; Created 22 October 2008

(ns clojure.test-clojure.evaluation
(:require [clojure.test :refer :all]))

(import '(java.lang Boolean)
'(clojure.lang Compiler Compiler$CompilerException))
(:require [clojure.test :refer :all])
(:import java.lang.Boolean
[clojure.lang Compiler Compiler$CompilerException]))

(defmacro test-that
"Provides a useful way for specifying the purpose of tests. If the first-level
@@ -184,7 +182,6 @@
(defstruct struct-with-symbols (with-meta 'k {:a "A"}))

(deftest Metadata

(test-that
"find returns key symbols and their metadata"
(let [s (struct struct-with-symbols 1)]