gitlab-org--gitlab-foss/features/steps/user.rb

11 lines
252 B
Ruby
Raw Normal View History

class Spinach::Features::User < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedUser
include SharedProject
step 'I should see user "John Doe" page' do
2014-09-24 06:28:41 +00:00
expect(title).to match(/^\s*John Doe/)
end
end