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
dce60104
Commit
dce60104
authored
May 19, 2011
by
Jon Yurek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Gets rid of a multiple argument warning
parent
f0d15d91
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/thumbnail_test.rb
+3
-3
No files found.
test/thumbnail_test.rb
View file @
dce60104
...
...
@@ -91,7 +91,7 @@ class ThumbnailTest < Test::Unit::TestCase
end
should
"send the right command to convert when sent #make"
do
Paperclip
.
expects
(
:run
).
with
do
|
arg
|
Paperclip
.
expects
(
:run
).
with
do
|
*
arg
|
arg
[
0
]
==
'convert'
&&
arg
[
1
]
==
':source -resize "x50" -crop "100x50+114+0" +repage :dest'
&&
arg
[
2
][
:source
]
==
"
#{
File
.
expand_path
(
@thumb
.
file
.
path
)
}
[0]"
...
...
@@ -117,7 +117,7 @@ class ThumbnailTest < Test::Unit::TestCase
end
should
"send the right command to convert when sent #make"
do
Paperclip
.
expects
(
:run
).
with
do
|
arg
|
Paperclip
.
expects
(
:run
).
with
do
|
*
arg
|
arg
[
0
]
==
'convert'
&&
arg
[
1
]
==
'-strip :source -resize "x50" -crop "100x50+114+0" +repage :dest'
&&
arg
[
2
][
:source
]
==
"
#{
File
.
expand_path
(
@thumb
.
file
.
path
)
}
[0]"
...
...
@@ -157,7 +157,7 @@ class ThumbnailTest < Test::Unit::TestCase
end
should
"send the right command to convert when sent #make"
do
Paperclip
.
expects
(
:run
).
with
do
|
arg
|
Paperclip
.
expects
(
:run
).
with
do
|
*
arg
|
arg
[
0
]
==
'convert'
&&
arg
[
1
]
==
':source -resize "x50" -crop "100x50+114+0" +repage -strip -depth 8 :dest'
&&
arg
[
2
][
:source
]
==
"
#{
File
.
expand_path
(
@thumb
.
file
.
path
)
}
[0]"
...
...
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