# File test/sinatra/test/filter_test.rb, line 9 def app Guestbook end
# File test/sinatra/test/filter_test.rb, line 13 def last_app SinatraTestHelper.instance.last_app end
# File test/sinatra/test/filter_test.rb, line 27 def test_docomo_get_convert_to_utf8 get '/', {:g => utf8_to_sjis("万葉")}, {"HTTP_USER_AGENT" => "DoCoMo/2.0 SH902i(c100;TB;W24H12)"} assert_equal last_app.assigns(:g), "万葉" assert_equal last_response.body, utf8_to_sjis("万葉") end
# File test/sinatra/test/filter_test.rb, line 33 def test_docomo_post_convert_to_utf8 post '/', {:p => utf8_to_sjis("けーたい")}, {"HTTP_USER_AGENT" => "DoCoMo/2.0 SH902i(c100;TB;W24H12)"} assert_equal last_app.assigns(:p), "けーたい" assert_equal last_response.body, utf8_to_sjis("けーたい") end
# File test/sinatra/test/filter_test.rb, line 17 def test_not_convert_pc_get get '/', {:g => Jpmobile::Util.sjis("万葉")}, {} assert_equal last_response.body, "万葉" end
# File test/sinatra/test/filter_test.rb, line 22 def test_not_convert_pc_post post '/', {:p => Jpmobile::Util.utf8("けーたい")}, {} assert_equal last_response.body, "けーたい" end