2011-05-11 03:44:02 -04:00
|
|
|
require File.expand_path('../helper', __FILE__)
|
2010-09-12 07:59:00 -04:00
|
|
|
|
|
|
|
begin
|
2011-10-10 21:57:14 -04:00
|
|
|
require 'rdoc'
|
2011-02-26 04:44:09 -05:00
|
|
|
require 'rdoc/markup/to_html'
|
2010-09-12 07:59:00 -04:00
|
|
|
|
|
|
|
class RdocTest < Test::Unit::TestCase
|
|
|
|
def rdoc_app(&block)
|
|
|
|
mock_app do
|
|
|
|
set :views, File.dirname(__FILE__) + '/views'
|
|
|
|
get '/', &block
|
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders inline rdoc strings' do
|
|
|
|
rdoc_app { rdoc '= Hiya' }
|
|
|
|
assert ok?
|
2010-12-23 06:11:57 -05:00
|
|
|
assert_body "<h1>Hiya</h1>"
|
2010-09-12 07:59:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders .rdoc files in views path' do
|
|
|
|
rdoc_app { rdoc :hello }
|
|
|
|
assert ok?
|
2010-12-23 06:11:57 -05:00
|
|
|
assert_body "<h1>Hello From RDoc</h1>"
|
2010-09-12 07:59:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "raises error if template not found" do
|
|
|
|
mock_app { get('/') { rdoc :no_such_template } }
|
|
|
|
assert_raise(Errno::ENOENT) { get('/') }
|
|
|
|
end
|
2011-04-15 05:14:23 -04:00
|
|
|
|
|
|
|
it "renders with inline layouts" do
|
|
|
|
mock_app do
|
|
|
|
layout { 'THIS. IS. #{yield.upcase}!' }
|
|
|
|
get('/') { rdoc 'Sparta', :layout_engine => :str }
|
|
|
|
end
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
2011-05-11 16:53:03 -04:00
|
|
|
assert_like 'THIS. IS. <P>SPARTA</P>!', body
|
2011-04-15 05:14:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "renders with file layouts" do
|
|
|
|
rdoc_app { rdoc 'Hello World', :layout => :layout2, :layout_engine => :erb }
|
|
|
|
assert ok?
|
|
|
|
assert_body "ERB Layout!\n<p>Hello World</p>"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can be used in a nested fashion for partials and whatnot" do
|
|
|
|
mock_app do
|
|
|
|
template(:inner) { "hi" }
|
|
|
|
template(:outer) { "<outer><%= rdoc :inner %></outer>" }
|
|
|
|
get '/' do
|
|
|
|
erb :outer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
get '/'
|
|
|
|
assert ok?
|
|
|
|
assert_like '<outer><p>hi</p></outer>', body
|
|
|
|
end
|
2010-09-12 07:59:00 -04:00
|
|
|
end
|
2011-01-25 03:27:15 -05:00
|
|
|
|
|
|
|
rescue LoadError
|
2010-09-12 07:59:00 -04:00
|
|
|
warn "#{$!.to_s}: skipping rdoc tests"
|
|
|
|
end
|