Commit b9156669 authored by Robert Speicher's avatar Robert Speicher

Fix Profile Avatar feature steps

parent 93e62826
...@@ -27,9 +27,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps ...@@ -27,9 +27,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
end end
step 'I change my avatar' do step 'I change my avatar' do
attach_file(:user_avatar, File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif')) attach_avatar
click_button "Save changes"
@user.reload
end end
step 'I should see new avatar' do step 'I should see new avatar' do
...@@ -42,9 +40,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps ...@@ -42,9 +40,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
end end
step 'I have an avatar' do step 'I have an avatar' do
attach_file(:user_avatar, File.join(Rails.root, 'spec', 'fixtures', 'banana_sample.gif')) attach_avatar
click_button "Save changes"
@user.reload
end end
step 'I remove my avatar' do step 'I remove my avatar' do
...@@ -233,4 +229,16 @@ class Spinach::Features::Profile < Spinach::FeatureSteps ...@@ -233,4 +229,16 @@ class Spinach::Features::Profile < Spinach::FeatureSteps
step "I see that application is removed" do step "I see that application is removed" do
expect(page.find(".oauth-applications")).not_to have_content "test_changed" expect(page.find(".oauth-applications")).not_to have_content "test_changed"
end 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 end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment