Asymptote: Add a test
The test creates a temporary directory, writes out a simple LaTeX file containing an Asymptote figure, then tries to compile it.
This commit is contained in:
parent
e4828514b6
commit
8b83b340ea
1 changed files with 28 additions and 0 deletions
|
@ -33,6 +33,34 @@ class Asymptote < Formula
|
|||
system "make install"
|
||||
end
|
||||
|
||||
def test
|
||||
ENV['TEXMFHOME'] = "#{HOMEBREW_PREFIX}/share/texmf"
|
||||
mktemp do
|
||||
(Pathname.new(Dir.getwd) + 'asy_test.tex').write <<-EOS.undent
|
||||
\\nonstopmode
|
||||
|
||||
\\documentclass{minimal}
|
||||
\\usepackage{asymptote}
|
||||
|
||||
\\begin{document}
|
||||
Hello, Asymptote!
|
||||
|
||||
\\begin{asy}
|
||||
size(3cm);
|
||||
draw((0,0)--(1,0)--(1,1)--(0,1)--cycle);
|
||||
\\end{asy}
|
||||
|
||||
\\end{document}
|
||||
EOS
|
||||
|
||||
system "pdflatex asy_test"
|
||||
system "asy asy_test-1.asy"
|
||||
system "pdflatex asy_test"
|
||||
end
|
||||
|
||||
return (not $? == 0)
|
||||
end
|
||||
|
||||
def caveats
|
||||
caveats = <<-EOS
|
||||
1) This formula links the latest version of the Asymptote LaTeX and ConTeXt
|
||||
|
|
Loading…
Reference in a new issue