spec/controllers/location_spec.rb in wagn-1.18.6 vs spec/controllers/location_spec.rb in wagn-1.19.0

- old
+ new

@@ -1,25 +1,25 @@ # -*- encoding : utf-8 -*- # FIXME: - this shouldn't really be with the controller specs -describe CardController, 'location test from old integration' do +describe CardController, "location test from old integration" do routes { Decko::Engine.routes } before do - login_as 'joe_user' + login_as "joe_user" end - describe 'previous location' do - it 'gets updated after viewing' do - get :read, id: 'Joe_User' - assert_equal '/Joe_User', Card::Env.previous_location + describe "previous location" do + it "gets updated after viewing" do + get :read, id: "Joe_User" + assert_equal "/Joe_User", Card::Env.previous_location end it "doesn't link to nonexistent cards" do - get :read, id: 'Joe_User' - get :read, id: 'Not_Me' - get :read, id: '*previous' - assert_redirected_to '/Joe_User' + get :read, id: "Joe_User" + get :read, id: "Not_Me" + get :read, id: "*previous" + assert_redirected_to "/Joe_User" end end end