Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user.rb « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6f05ecb2c7181d41f6e9df04f267d32674d5dca (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(title).to match(/^\s*John Doe/)
  end
end