ルビーを学ぶだけです。"ruby -I lib test/test_person.rb"が "lib"をロードしていない
は、私は私のディレクトリ内の2つのフォルダがあります。 "LIB" と "テスト" を
内のlib \ person.rb:
class Person
attr_accessor :name
def introduction
"Hello, my name is #{name}!"
end
end
テストの\ test_person.rb内側:
require 'minitest/autorun'
require 'person'
class TestPerson < Minitest::Test
def test_introduction
person = Person.new
person.name = 'Bob'
assert(person.introduction == 'Hello, my name is Bob!')
end
end
実行しようとすると:ruby -I lib test/test_person.rb次のエラーが表示されます。
(...) cannot load such file -- person (LoadError) (...)
-I引数が動作していないようです。私はそれなしで同じエラーを取得します。 手掛かりはありますか? TNKS