メインコンテンツまでスキップ

名前付きルートの使用

ルーティング仕様では、名前付きルートにアクセスできます。

名前付きルートへのアクセス

以下の内容で "spec/routing/widget_routes_spec.rb" という名前のファイルを作成します。

require "rails_helper"

RSpec.describe "routes to the widgets controller", type: :routing do
it "routes a named route" do
expect(:get => new_widget_path).
to route_to(:controller => "widgets", :action => "new")
end
end

rspec spec を実行すると、すべての例がパスするはずです。