Skip to content

Instantly share code, notes, and snippets.

@drager
Created April 29, 2014 11:09
Show Gist options
  • Save drager/11397075 to your computer and use it in GitHub Desktop.
Save drager/11397075 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe "CreateTopics" do
it "creates topics" do
@forum = Forum.create(name: 'Ruby')
visit new_forum_topic_path, @forum.slug
fill_in "Name", with: "Test"
click_button "Submit"
end
end
Failure/Error: visit new_forum_topic_path, @forum.slug
ActionController::UrlGenerationError:
No route matches {:action=>"new", :controller=>"topics"} missing required keys: [:forum_id]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment