summaryrefslogtreecommitdiff
path: root/features/steps/user.rb
blob: 5fb248ffcbc438178895b794d310727a95de0459 (plain)
1
2
3
4
5
6
7
8
9
10
class Spinach::Features::User < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedUser
  include SharedProject

  step 'I should see user "John Doe" page' do
    expect(page.title).to match(/^\s*John Doe/)
  end
end