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(
:avatar, foo,
{ yo: 'greeting' }) :avatar,
Paperclip::AttachmentRegistry.register(foo, { yo: 'greeting' }
:greeter, )
{ ciao: 'greeting' }) Paperclip::AttachmentRegistry.register(
foo,
:greeter,
{ 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(
:avatar, foo,
expected_definitions[:avatar]) :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(
:avatar, foo,
foo_definitions[:avatar]) :avatar,
Paperclip::AttachmentRegistry.register(bar, foo_definitions[:avatar]
:avatar, )
bar_definitions[:avatar]) Paperclip::AttachmentRegistry.register(
bar,
: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