Commit 87564dc9 authored by Zachary Scott's avatar Zachary Scott

Make travis happy

We have do this because mruby's test files are found using MRUBY_ROOT, like this:
    mrbs = Dir.glob("#{MRUBY_ROOT}/test/t/*.rb")
parent 80598f40
assert('__FILE__') do
file = __FILE__
assert_true 'test/t/syntax.rb' == file || 'test\t\syntax.rb' == file
file = __FILE__.split('test/')[1]
assert_true 't/syntax.rb' == file || 't\syntax.rb' == file
end
assert('__LINE__') do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment