Make reordering work in Ruby 1.8.x
I was fooled: Ruby 1.9 has ordered hashes; 1.8 doesn't. So what I did in Revision 689 works in Ruby 1.9, but fails in 1.8. Now we parse the POST params ourselves.
This commit is contained in:
parent
b7806c12ce
commit
8a989b1a7b
2 changed files with 6 additions and 7 deletions
|
@ -1349,7 +1349,8 @@ Page2 contents $\mathbb{01234}$.
|
|||
@wiki.write_page('wiki1', 'Page2',
|
||||
"Page2 contents $\\mathbb{01234}$.\n",
|
||||
Time.now, Author.new('AnotherAuthor', '127.0.0.2'), x_test_renderer)
|
||||
r = process('tex_list', 'web' => 'wiki1', 'Page2' => 'tex', 'BogusPage'=> 'tex', 'HomePage' => 'tex')
|
||||
@request.env['RAW_POST_DATA'] = "_form_key=353106ff8c8466727ee5338baaa0640c87c9b0d6&Page2=tex&BogusPage=tex&HomePage=tex&commit=Export"
|
||||
r = process('tex_list', 'web' => 'wiki1', 'Page2' => 'tex', 'BogusPage'=> 'tex', 'HomePage' => 'tex')
|
||||
assert_response(:success)
|
||||
assert_equal @tex_header1 + "\\usepackage{mathbbol}\n" + @tex_header2 + %q!\section*{Page2}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue