Sha256: 509d6c0a781532ef8bfcafab40b3ee88a923c7911e4ee03e7ba5e084a23d03f5

Contents?: true

Size: 994 Bytes

Versions: 1

Compression:

Stored size: 994 Bytes

Contents

# Copyright (c) 2010 The Mirah project authors. All Rights Reserved.
# All contributing project authors may be found in the NOTICE file.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

class FactoryTest < Test::Unit::TestCase
  def test_bootclass_loader_can_find_things_on_bootclasspath
    factory = Mirah::JVM::Types::TypeFactory.new
    factory.bootclasspath = File.expand_path("#{__FILE__}/../../fixtures/") +"/"
    assert factory.bootstrap_loader.get_resource 'org/foo/A.class'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mirah-0.1.0.pre-java test/jvm/factory_test.rb