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
4bc50bda
Commit
4bc50bda
authored
Oct 14, 2008
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bugs in should_have_attached_file
parent
7c598fbe
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
shoulda_macros/paperclip.rb
+5
-5
No files found.
shoulda_macros/paperclip.rb
View file @
4bc50bda
...
...
@@ -4,16 +4,16 @@ module Paperclip
klass
=
self
.
name
.
gsub
(
/Test$/
,
''
).
constantize
context
"Class
#{
klass
.
name
}
with attachment
#{
name
}
"
do
should
"respond to all the right methods"
do
[
"
#{
name
}
_file_name"
,
name
,
"
#{
name
}
?"
].
each
do
|
meth
|
assert
_responds_to
object
,
meth
,
"
#{
klass
.
name
}
does not respond to
#{
name
}
."
[
name
,
"
#{
name
}
="
,
"
#{
name
}
?"
].
each
do
|
meth
|
assert
klass
.
instance_methods
.
include?
(
meth
)
,
"
#{
klass
.
name
}
does not respond to
#{
name
}
."
end
end
should
"have the correct definition"
do
expected
=
options
actual
=
klass
.
attachment_definition
[
name
]
expected
.
delete
(
:validations
)
unless
options
.
key?
(
:validations
)
expected
.
delete
(
:whiny_thumbnails
)
unless
options
.
key?
(
:whiny_thumbnails
)
actual
=
klass
.
attachment_definition
s
[
name
]
expected
.
delete
(
:validations
)
if
not
options
.
key?
(
:validations
)
expected
.
delete
(
:whiny_thumbnails
)
if
not
options
.
key?
(
:whiny_thumbnails
)
assert_equal
expected
,
actual
end
...
...
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