Fix Profile Avatar feature steps
This commit is contained in:
parent
93e6282657
commit
b9156669fe
1 changed files with 14 additions and 6 deletions
|
@ -27,9 +27,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
end
|
||||
|
||||
step 'I change my avatar' do
|
||||
attach_file(:user_avatar, File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif'))
|
||||
click_button "Save changes"
|
||||
@user.reload
|
||||
attach_avatar
|
||||
end
|
||||
|
||||
step 'I should see new avatar' do
|
||||
|
@ -42,9 +40,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
end
|
||||
|
||||
step 'I have an avatar' do
|
||||
attach_file(:user_avatar, File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif'))
|
||||
click_button "Save changes"
|
||||
@user.reload
|
||||
attach_avatar
|
||||
end
|
||||
|
||||
step 'I remove my avatar' do
|
||||
|
@ -233,4 +229,16 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
|
|||
step "I see that application is removed" do
|
||||
expect(page.find(".oauth-applications")).not_to have_content "test_changed"
|
||||
end
|
||||
|
||||
def attach_avatar
|
||||
attach_file :user_avatar, Rails.root.join(*%w(spec fixtures banana_sample.gif))
|
||||
|
||||
page.find('#user_avatar_crop_x', visible: false).set('0')
|
||||
page.find('#user_avatar_crop_y', visible: false).set('0')
|
||||
page.find('#user_avatar_crop_size', visible: false).set('256')
|
||||
|
||||
click_button "Save changes"
|
||||
|
||||
@user.reload
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue