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
553df792
Commit
553df792
authored
14 years ago
by
Larry Sprock
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update helper require paths for Ruby 1.9.2 compatibility
parent
b255f338
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
17 additions
and
17 deletions
+17
-17
test/attachment_test.rb
+1
-1
test/command_line_test.rb
+1
-1
test/geometry_test.rb
+1
-1
test/helper.rb
+1
-1
test/integration_test.rb
+1
-1
test/interpolations_test.rb
+1
-1
test/iostream_test.rb
+1
-1
test/matchers/have_attached_file_matcher_test.rb
+1
-1
test/matchers/validate_attachment_content_type_matcher_test.rb
+1
-1
test/matchers/validate_attachment_presence_matcher_test.rb
+1
-1
test/matchers/validate_attachment_size_matcher_test.rb
+1
-1
test/paperclip_test.rb
+1
-1
test/processor_test.rb
+1
-1
test/storage_test.rb
+1
-1
test/style_test.rb
+1
-1
test/thumbnail_test.rb
+1
-1
test/upfile_test.rb
+1
-1
No files found.
test/attachment_test.rb
View file @
553df792
# encoding: utf-8
require
'test/helper'
require
'
./
test/helper'
class
Dummy
# This is a dummy class
...
...
This diff is collapsed.
Click to expand it.
test/command_line_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
CommandLineTest
<
Test
::
Unit
::
TestCase
def
setup
...
...
This diff is collapsed.
Click to expand it.
test/geometry_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
GeometryTest
<
Test
::
Unit
::
TestCase
context
"Paperclip::Geometry"
do
...
...
This diff is collapsed.
Click to expand it.
test/helper.rb
View file @
553df792
...
...
@@ -53,7 +53,7 @@ $LOAD_PATH << File.join(ROOT, 'lib', 'paperclip')
require
File
.
join
(
ROOT
,
'lib'
,
'paperclip.rb'
)
require
'shoulda_macros/paperclip'
require
'
./
shoulda_macros/paperclip'
FIXTURES_DIR
=
File
.
join
(
File
.
dirname
(
__FILE__
),
"fixtures"
)
config
=
YAML
::
load
(
IO
.
read
(
File
.
dirname
(
__FILE__
)
+
'/database.yml'
))
...
...
This diff is collapsed.
Click to expand it.
test/integration_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
IntegrationTest
<
Test
::
Unit
::
TestCase
context
"Many models at once"
do
...
...
This diff is collapsed.
Click to expand it.
test/interpolations_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
InterpolationsTest
<
Test
::
Unit
::
TestCase
should
"return all methods but the infrastructure when sent #all"
do
...
...
This diff is collapsed.
Click to expand it.
test/iostream_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
IOStreamTest
<
Test
::
Unit
::
TestCase
include
IOStream
...
...
This diff is collapsed.
Click to expand it.
test/matchers/have_attached_file_matcher_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
HaveAttachedFileMatcherTest
<
Test
::
Unit
::
TestCase
context
"have_attached_file"
do
...
...
This diff is collapsed.
Click to expand it.
test/matchers/validate_attachment_content_type_matcher_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
ValidateAttachmentContentTypeMatcherTest
<
Test
::
Unit
::
TestCase
context
"validate_attachment_content_type"
do
...
...
This diff is collapsed.
Click to expand it.
test/matchers/validate_attachment_presence_matcher_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
ValidateAttachmentPresenceMatcherTest
<
Test
::
Unit
::
TestCase
context
"validate_attachment_presence"
do
...
...
This diff is collapsed.
Click to expand it.
test/matchers/validate_attachment_size_matcher_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
ValidateAttachmentSizeMatcherTest
<
Test
::
Unit
::
TestCase
context
"validate_attachment_size"
do
...
...
This diff is collapsed.
Click to expand it.
test/paperclip_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
PaperclipTest
<
Test
::
Unit
::
TestCase
context
"Calling Paperclip.run"
do
...
...
This diff is collapsed.
Click to expand it.
test/processor_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
ProcessorTest
<
Test
::
Unit
::
TestCase
should
"instantiate and call #make when sent #make to the class"
do
...
...
This diff is collapsed.
Click to expand it.
test/storage_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
require
'aws/s3'
class
StorageTest
<
Test
::
Unit
::
TestCase
...
...
This diff is collapsed.
Click to expand it.
test/style_test.rb
View file @
553df792
# encoding: utf-8
require
'test/helper'
require
'
./
test/helper'
class
StyleTest
<
Test
::
Unit
::
TestCase
...
...
This diff is collapsed.
Click to expand it.
test/thumbnail_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
ThumbnailTest
<
Test
::
Unit
::
TestCase
...
...
This diff is collapsed.
Click to expand it.
test/upfile_test.rb
View file @
553df792
require
'test/helper'
require
'
./
test/helper'
class
UpfileTest
<
Test
::
Unit
::
TestCase
{
%w(jpg jpe jpeg)
=>
'image/jpeg'
,
...
...
This diff is collapsed.
Click to expand it.
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