Commit b5aea8b1 by Jon Yurek

Formatting of the features

parent b8aee5f7
Given "I have a rails application" do Given "I have a rails application" do
steps %{ steps %{
Given I generate a rails application Given I generate a rails application
And this plugin is available
And I have a "users" resource with "name:string" And I have a "users" resource with "name:string"
And I turn off class caching And I turn off class caching
And I run "script/generate paperclip user avatar"
Given I save the following as "app/models/user.rb" Given I save the following as "app/models/user.rb"
""" """
class User < ActiveRecord::Base class User < ActiveRecord::Base
...@@ -28,7 +28,7 @@ Given "I have a rails application" do ...@@ -28,7 +28,7 @@ Given "I have a rails application" do
<p>Name: <%= @user.name %></p> <p>Name: <%= @user.name %></p>
<p>Avatar: <%= image_tag @user.avatar.url %></p> <p>Avatar: <%= image_tag @user.avatar.url %></p>
""" """
And this plugin is available And I run "script/generate paperclip user avatar"
And the rails application is prepped and running And the rails application is prepped and running
} }
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