gitlab-org--gitlab-foss/features/steps/user.rb
2014-09-26 09:51:17 +02:00

10 lines
252 B
Ruby

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