You’re excited about building a new application which allows users to sign up and host their own blog. You decide that each blog will have their own space by providing a subdomain. Let’s start off with a feature spec. require "rails_helper" feature "user views a blog" do scenario "homepage" do blog = create( :blog, subdomain: "bobloblaw", title: "Bob Loblaw's Law Blog", description: "Welcome to my

