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 dodescribe "POST /blog_posts" doit "creates a blog post in the database" doparams = { 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)endendend
Here’s some information to ...