How can I make sessions work in my RSpec tests?
I tried something like this:
describe "createnewlist_route_spec" do include Rack::Test::Methods use Rack::Session::Pool def app @app ||= Sinatra::Application end it "should save listitem to database" do post '/addnewlistitem', {:item => 'testitem'}, :sessions => {:userid => '123'} end end
I'm noob sinatra, so maybe I'm wrong here ...
source share