mirror of https://github.com/rails/rails
19 lines
417 B
Ruby
19 lines
417 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require_relative "abstract_unit"
|
||
|
|
||
|
class ConfigurationFileTest < ActiveSupport::TestCase
|
||
|
test "backtrace contains yaml path" do
|
||
|
Tempfile.create do |file|
|
||
|
file.write("wrong: <%= foo %>")
|
||
|
file.rewind
|
||
|
|
||
|
error = assert_raises do
|
||
|
ActiveSupport::ConfigurationFile.parse(file.path)
|
||
|
end
|
||
|
|
||
|
assert_match file.path, error.backtrace.first
|
||
|
end
|
||
|
end
|
||
|
end
|