...

/

Challenge: Create a New Blog Post

Challenge: Create a New Blog Post

Work through a challenge to test your understanding of the request layer.

We'll cover the following...

Problem statement

You’re given the following test scenario:

Press + to interact
RSpec.describe "Blog posts", type: :request do
describe "POST /blog_posts" do
it "creates a blog post in the database" do
params = { title: "This is a post", body: "This is the post's body" }
post blog_posts_path, params: { blog_post: params }
expect(BlogPost.count).to eq(1)
end
end
end

Here’s some information to ...