Created
April 29, 2014 11:09
-
-
Save drager/11397075 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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