You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/spec/support/controller_macros.rb

8 lines
151 B
Ruby

module Asciinema
module ControllerMacros
def login_as(user)
allow(controller).to receive(:current_user).and_return(user)
end
end
end