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
2e92d879
Commit
2e92d879
authored
Aug 04, 2008
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added shoulda macros
parent
fb2384d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
+32
-0
shoulda_macros/paperclip.rb
+32
-0
No files found.
shoulda_macros/paperclip.rb
0 → 100644
View file @
2e92d879
module
Paperclip
module
Shoulda
def
should_have_attached_file
name
,
options
=
{}
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
}
."
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
)
assert_equal
expected
,
actual
end
should
"ensure that ImageMagick is available"
do
%w( convert identify )
.
each
do
|
command
|
`
#{
Paperclip
.
path_for_command
(
command
)
}
`
assert_equal
0
,
$?
,
"ImageMagick's
#{
command
}
returned with an error. Make sure that
#{
command
}
is available at
#{
Paperclip
.
path_for_command
(
command
)
}
"
end
end
end
end
end
end
Test
::
Unit
::
TestCase
.
extend
(
Paperclip
::
Shoulda
)
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