Removed accidentally duplicated code
This commit is contained in:
parent
bd8e725578
commit
57df455d1d
|
@ -280,31 +280,6 @@ class WikiControllerTest < Test::Unit::TestCase
|
||||||
r.headers['Content-Disposition']
|
r.headers['Content-Disposition']
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_pdf
|
|
||||||
assert RedClothForTex.available?, 'Cannot do test_pdf when pdflatex is not available'
|
|
||||||
r = process('pdf', 'web' => 'wiki1', 'id' => 'HomePage')
|
|
||||||
assert_success
|
|
||||||
|
|
||||||
sio = StringIO.new
|
|
||||||
begin
|
|
||||||
$stdout = sio
|
|
||||||
r.body.call
|
|
||||||
ensure
|
|
||||||
$stdout = STDOUT
|
|
||||||
end
|
|
||||||
|
|
||||||
sio.rewind
|
|
||||||
content = sio.read
|
|
||||||
|
|
||||||
assert_equal '%PDF', content[0..3]
|
|
||||||
assert_equal "EOF\n", content[-4..-1]
|
|
||||||
|
|
||||||
assert_equal 'application/octet_stream', r.headers['Content-Type']
|
|
||||||
assert_match /attachment; filename="HomePage-wiki1-\d\d\d\d-\d\d-\d\d-\d\d-\d\d-\d\d.pdf"/,
|
|
||||||
r.headers['Content-Disposition']
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
else
|
else
|
||||||
puts 'Warning: tests involving pdflatex are very slow, therefore they are disable by default.'
|
puts 'Warning: tests involving pdflatex are very slow, therefore they are disable by default.'
|
||||||
puts ' Set environment variable INSTIKI_TEST_PDFLATEX or global Ruby variable'
|
puts ' Set environment variable INSTIKI_TEST_PDFLATEX or global Ruby variable'
|
||||||
|
|
Loading…
Reference in a new issue