docbrown/spec/requests/podcast_episodes_index_spec.rb
Ben Halpern c76abbbdb3
Allow users to follow podcasts (#2690)
* 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
2019-05-04 15:30:40 -04:00

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