Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test against template_content #1729

Merged
merged 3 commits into from
Sep 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions test/test_pdfmaker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,25 @@ def test_template_content_with_localconfig
end
end

def test_template_content_with_invalid_localconfig
Dir.mktmpdir do |dir|
Dir.chdir(dir) do
Dir.mkdir('layouts')
File.write(File.join('layouts', 'config-local.tex.erb'), %q(<%= not_existed_method %>\n))
@maker.basedir = Dir.pwd
@maker.erb_config
@maker.instance_eval do
def error!(msg)
msg
end
end
error_msg = @maker.template_content
assert_match(/template or configuration error:/, error_msg)
assert_match(/undefined local variable or method `not_existed_method'/, error_msg)
end
end
end

def test_gettemplate_with_backmatter
@config.merge!(
'backcover' => 'backcover.tex',
Expand Down