mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
18 lines
636 B
Gherkin
18 lines
636 B
Gherkin
Feature: Running paperclip in a Rails app
|
|
|
|
Scenario: Basic utilization
|
|
Given I have a rails application
|
|
And I save the following as "app/models/user.rb"
|
|
"""
|
|
class User < ActiveRecord::Base
|
|
has_attached_file :avatar
|
|
end
|
|
"""
|
|
When I visit /users/new
|
|
And I fill in "user_name" with "something"
|
|
And I attach the file "test/fixtures/5k.png" to "user_avatar"
|
|
And I press "Submit"
|
|
Then I should see "Name: something"
|
|
And I should see an image with a path of "/system/avatars/1/original/5k.png"
|
|
And the file at "/system/avatars/1/original/5k.png" is the same as "test/fixtures/5k.png"
|