File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed
src/test/java/org/truffleruby Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 9
9
*/
10
10
package org .truffleruby ;
11
11
12
- import org .junit .After ;
13
- import org .junit .Before ;
14
12
import org .junit .Test ;
15
13
import org .truffleruby .fixtures .FluidForce ;
16
14
import org .truffleruby .services .scriptengine .TruffleRubyScriptEngine ;
17
15
import org .truffleruby .services .scriptengine .TruffleRubyScriptEngineFactory ;
18
16
import org .truffleruby .shared .TruffleRuby ;
19
- import org .truffleruby .shared .options .OptionsCatalog ;
20
17
21
18
import javax .script .Bindings ;
22
19
import javax .script .Compilable ;
32
29
33
30
public class JSR223InteropTest {
34
31
35
- @ Before
36
- public void before () {
37
- System .setProperty ("polyglot." + OptionsCatalog .HOME .getName (), System .getProperty ("user.dir" ));
38
- }
39
-
40
- @ After
41
- public void after () {
42
- System .clearProperty ("polyglot." + OptionsCatalog .HOME .getName ());
43
- }
44
-
45
32
@ Test
46
33
public void testVersion () {
47
34
assertEquals (TruffleRuby .getEngineVersion (), new TruffleRubyScriptEngineFactory ().getEngineVersion ());
You can’t perform that action at this time.
0 commit comments