Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paperclip
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paperclip
Commits
e4c04c2e
Commit
e4c04c2e
authored
Feb 06, 2015
by
Agustin Cavilliotti
Committed by
Jon Yurek
Feb 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix style issues mentioned by @jyurek in the attachment_registry_spec.rb file
parent
7d2904de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
15 deletions
+25
-15
spec/paperclip/attachment_registry_spec.rb
+25
-15
No files found.
spec/paperclip/attachment_registry_spec.rb
View file @
e4c04c2e
...
...
@@ -54,12 +54,16 @@ describe 'Attachment Registry' do
greeter:
{
ciao:
'greeting'
}
}
foo
=
Class
.
new
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
{
yo:
'greeting'
})
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:greeter
,
{
ciao:
'greeting'
})
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
{
yo:
'greeting'
}
)
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:greeter
,
{
ciao:
'greeting'
}
)
definitions
=
Paperclip
::
AttachmentRegistry
.
definitions_for
(
foo
)
...
...
@@ -70,9 +74,11 @@ describe 'Attachment Registry' do
expected_definitions
=
{
avatar:
{
yo:
'greeting'
}
}
foo
=
Class
.
new
bar
=
Class
.
new
(
foo
)
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
expected_definitions
[
:avatar
])
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
expected_definitions
[
:avatar
]
)
definitions
=
Paperclip
::
AttachmentRegistry
.
definitions_for
(
bar
)
...
...
@@ -90,12 +96,16 @@ describe 'Attachment Registry' do
}
foo
=
Class
.
new
bar
=
Class
.
new
(
foo
)
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
foo_definitions
[
:avatar
])
Paperclip
::
AttachmentRegistry
.
register
(
bar
,
:avatar
,
bar_definitions
[
:avatar
])
Paperclip
::
AttachmentRegistry
.
register
(
foo
,
:avatar
,
foo_definitions
[
:avatar
]
)
Paperclip
::
AttachmentRegistry
.
register
(
bar
,
:avatar
,
bar_definitions
[
:avatar
]
)
definitions
=
Paperclip
::
AttachmentRegistry
.
definitions_for
(
bar
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment