Files
growstuff/spec/controllers/places_controller_spec.rb
milesgould d8bf8ae4df De-deprecate controller and view specs
We deprecated controller and view specs on the grounds that they were
brittle, and were a poorer measure of user experience than feature
specs. However, feature specs have their own problems: they're much
slower to run, and flakier (see #901). We also ran into a few cases
where feature specs erroneously passed because they were checking for
the presence of a string that occurred in the error page!

Hence, we're cautiously un-deprecating controller and view specs.

Fixes #1132
2017-11-17 16:51:24 +00:00

32 lines
792 B
Ruby

require 'rails_helper'
describe PlacesController do
before :each do
controller.stub(:current_member) { nil }
end
describe "GET show" do
before(:each) do
@member_london = FactoryBot.create(:london_member)
@member_south_pole = FactoryBot.create(:south_pole_member)
end
it "assigns place name" do
get :show, place: @member_london.location
assigns(:place).should eq @member_london.location
end
it "assigns nearby members" do
get :show, place: @member_london.location
assigns(:nearby_members).should eq [@member_london, @member_south_pole]
end
end
describe "GET search" do
it "redirects to the new place" do
get :search, new_place: "foo"
response.should redirect_to place_path("foo")
end
end
end