* Allow users to follow podcasts * Only display podcasts user follows * Add main_color_hex to factory * Fix podcast test and modify styles * Fix tests * Remove weird test
10 lines
280 B
Ruby
10 lines
280 B
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe "PodcastEpisodesSpec", type: :request do
|
|
describe "GET podcast episodes index" do
|
|
it "renders page with proper sidebar" do
|
|
get "/pod"
|
|
expect(response.body).to include("If you know of a great dev podcast")
|
|
end
|
|
end
|
|
end
|