1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

MagLev doesn't #expand __FILE__ like it should

This commit is contained in:
Tim Felgentreff 2012-08-17 09:55:56 +02:00
parent d1e72d30b4
commit 37e7d43034

View file

@ -446,7 +446,7 @@ class SettingsTest < Test::Unit::TestCase
end end
it 'defaults to the file subclassing' do it 'defaults to the file subclassing' do
assert_equal __FILE__, Sinatra.new.app_file assert_equal File.expand_path(__FILE__), Sinatra.new.app_file
end end
end end