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:
Zachary Scott
2015-09-02 09:52:37 -04:00
parent 80598f40bf
commit 87564dc98f
+2 -2
View File
@@ -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