Guest User

Untitled

a guest
Jul 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. scenario "Uploading an image" do
  2. Factory :establishment, :name => "China In Box Floresta", :company => company
  3.  
  4. visit admin_establishments_page
  5.  
  6. click_link "Alterar"
  7. attach_file "establishment_photos_attributes__image", image_file("logo.jpg")
  8.  
  9. click_button "Gravar"
  10. page.should have_content("China In Box Floresta")
  11.  
  12. click_link "Alterar"
  13. page.should have_xpath("//*/img[contains(@src, 'logo.jpg')]")
  14. end
Add Comment
Please, Sign In to add comment