炊きたてのご飯が食べたい

定時に帰れるっていいね。自宅勤務できるっていいね。子どもと炊きたてのご飯が食べられる。アクトインディでは積極的にエンジニアを募集中です。

jpmobile を使っているプロジェクトの Rspec でスマートフォンのアクセスを行う


allow(request).to receive(:smart_phone?).and_return true

で request を スマートフォンのアクセスで stub する

describe ParentsController do
  def as_smart_phone_request!
    allow(request).to receive(:smart_phone?).and_return true
  end

  describe "GET #show" do
    context "スマートフォンの場合" do
      before(:each) do
        as_smart_phone_request!
      end

      it 'テストを書く'
  end
end