mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
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")
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user