LoginSignup
4
2

More than 5 years have passed since last update.

Rspecでjpmobileを利用したスマートフォンサイトのコントローラのテストをする方法

Posted at

jpmobileを利用している際にそのままRspecを走らせてしまうとPCサイトとみなされてテストが走ってしまうので、スマートフォンによるアクセスと見せかける方法。smart_phone?メソッドでtrueが返るようにスタブメソッドを定義してしまう

spec/spec_helper.rb
config.before(:each, :type => :controller) do
  Rack::Request.any_instance.stub(:smart_phone?).and_return(true)
end
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2