Sha256: 13a0d0cdde3d7017b957d72b226e63180ffd911bc8ae6c49ba4960e40bb19915

Contents?: true

Size: 191 Bytes

Versions: 10

Compression:

Stored size: 191 Bytes

Contents

module UserMacros
  def login(user)
    visit new_session_path
    fill_in 'name', with: user.name
    click_button 'Log in'
  end
end
RSpec.configure { |config| config.include(UserMacros) }

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
chili-4.0.1 spec/example_app/spec/support/user_macros.rb
chili-4.0.0 spec/example_app/spec/support/user_macros.rb
chili-3.1.1 spec/example_app/spec/support/user_macros.rb
chili-3.1.0 spec/example_app/spec/support/user_macros.rb
chili-3.0.0 spec/example_app/spec/support/user_macros.rb
chili-2.0.1 spec/example_app/spec/support/user_macros.rb
chili-2.0.0 spec/example_app/spec/support/user_macros.rb
chili-1.0.1 spec/dummy/example_app/spec/support/user_macros.rb
chili-1.0.0 spec/dummy/example_app/spec/support/user_macros.rb
chili-0.3.5 spec/dummy/example_app/spec/support/user_macros.rb