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:
parent
d1e72d30b4
commit
37e7d43034
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue