Sha256: 3b220aa7608f1e112a01a342836bff4c40ad4f162e0a44e40522bb6e83af879c
Contents?: true
Size: 530 Bytes
Versions: 3
Compression:
Stored size: 530 Bytes
Contents
require_relative '../lib/jruby_art/library_loader' require_relative '../lib/jruby_art/config' require 'spec_helper' describe LibraryLoader do before :all do K9_ROOT = "../" @library_loader = LibraryLoader.new end METHODS = %i(local_java_lib local_ruby_lib installed_java_lib installed_java_lib load_libraries) METHODS.each { |method_string| it "method: .#{method_string}" do expect(@library_loader).to respond_to(method_string) end } after :all do @library_loader = nil end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jruby_art-0.2.6.pre | spec/library_loader_spec.rb |
jruby_art-0.2.4.pre | spec/library_loader_spec.rb |
jruby_art-0.2.3.pre | spec/library_loader_spec.rb |