summaryrefslogtreecommitdiff
path: root/features/steps/shared/user.rb
blob: 209d77c7acf4e50693d2389f85240a8997eac34e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module SharedUser
  include Spinach::DSL

  step 'User "John Doe" exists' do
    user_exists("John Doe", {username: "john_doe"})
  end

  step 'User "Mary Jane" exists' do
    user_exists("Mary Jane", {username: "mary_jane"})
  end

  protected

  def user_exists(name, options = {})
    User.find_by(name: name) || create(:user, {name: name, admin: false}.merge(options))
  end
end