To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratornamed routes
Routing specs have access to named routes.
- Scenarios
-
- access named route
-
- Given
-
a file named "spec/routing/widget_routes_spec.rb" with:
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
- When
-
I run
rspec spec
- Then
- the examples should all pass
Last published 9 months ago by Jon Rowe.