Package org.example

Source Code of org.example.SimpleTest

package org.example;

import static org.junit.Assert.assertTrue;

import org.jruby.embed.ScriptingContainer;

import org.junit.Test;

public class SimpleTest {

    @Test
    public void test() throws Exception {
        ScriptingContainer container = new ScriptingContainer();
  String output = (String) container.runScriptlet("require 'hello';Hello.new( :name => 'world' ).say");

        assertTrue( output, output.contains( "hello world" ) );
        assertTrue( output, output.contains( "zip file name: world" ) );
    }

}
TOP

Related Classes of org.example.SimpleTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.