Commit e4c04c2e by Agustin Cavilliotti Committed by Jon Yurek

Fix style issues mentioned by @jyurek in the attachment_registry_spec.rb file

parent 7d2904de
...@@ -54,12 +54,16 @@ describe 'Attachment Registry' do ...@@ -54,12 +54,16 @@ describe 'Attachment Registry' do
greeter: { ciao: 'greeting' } greeter: { ciao: 'greeting' }
} }
foo = Class.new foo = Class.new
Paperclip::AttachmentRegistry.register(foo, Paperclip::AttachmentRegistry.register(
foo,
:avatar, :avatar,
{ yo: 'greeting' }) { yo: 'greeting' }
Paperclip::AttachmentRegistry.register(foo, )
Paperclip::AttachmentRegistry.register(
foo,
:greeter, :greeter,
{ ciao: 'greeting' }) { ciao: 'greeting' }
)
definitions = Paperclip::AttachmentRegistry.definitions_for(foo) definitions = Paperclip::AttachmentRegistry.definitions_for(foo)
...@@ -70,9 +74,11 @@ describe 'Attachment Registry' do ...@@ -70,9 +74,11 @@ describe 'Attachment Registry' do
expected_definitions = { avatar: { yo: 'greeting' } } expected_definitions = { avatar: { yo: 'greeting' } }
foo = Class.new foo = Class.new
bar = Class.new(foo) bar = Class.new(foo)
Paperclip::AttachmentRegistry.register(foo, Paperclip::AttachmentRegistry.register(
foo,
:avatar, :avatar,
expected_definitions[:avatar]) expected_definitions[:avatar]
)
definitions = Paperclip::AttachmentRegistry.definitions_for(bar) definitions = Paperclip::AttachmentRegistry.definitions_for(bar)
...@@ -90,12 +96,16 @@ describe 'Attachment Registry' do ...@@ -90,12 +96,16 @@ describe 'Attachment Registry' do
} }
foo = Class.new foo = Class.new
bar = Class.new(foo) bar = Class.new(foo)
Paperclip::AttachmentRegistry.register(foo, Paperclip::AttachmentRegistry.register(
foo,
:avatar, :avatar,
foo_definitions[:avatar]) foo_definitions[:avatar]
Paperclip::AttachmentRegistry.register(bar, )
Paperclip::AttachmentRegistry.register(
bar,
:avatar, :avatar,
bar_definitions[:avatar]) bar_definitions[:avatar]
)
definitions = Paperclip::AttachmentRegistry.definitions_for(bar) definitions = Paperclip::AttachmentRegistry.definitions_for(bar)
......
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