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
ffbfc24e
Commit
ffbfc24e
authored
Sep 15, 2010
by
Daniel Schierbeck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a proper test suite of the schema helper
parent
b70ffbc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
0 deletions
+69
-0
test/schema_test.rb
+69
-0
No files found.
test/schema_test.rb
0 → 100644
View file @
ffbfc24e
require
'test/helper'
require
'ostruct'
class
MockSchema
include
Paperclip
::
Schema
def
initialize
(
table_name
=
nil
)
@table_name
=
table_name
@columns
=
{}
end
def
column
(
name
,
type
)
@columns
[
name
]
=
type
end
def
remove_column
(
table_name
,
column_name
)
@columns
.
delete
(
column_name
)
end
def
has_column?
(
column_name
)
@columns
.
key?
(
column_name
)
end
def
type_of
(
column_name
)
@columns
[
column_name
]
end
end
class
SchemaTest
<
Test
::
Unit
::
TestCase
context
"Migrating up"
do
setup
do
@schema
=
MockSchema
.
new
@schema
.
has_attached_file
:avatar
end
should
"create the file_name column"
do
assert
@schema
.
has_column?
(
:avatar_file_name
)
end
should
"create the content_type column"
do
assert
@schema
.
has_column?
(
:avatar_content_type
)
end
should
"create the file_size column"
do
assert
@schema
.
has_column?
(
:avatar_file_size
)
end
should
"create the updated_at column"
do
assert
@schema
.
has_column?
(
:avatar_updated_at
)
end
should
"make the file_name column a string"
do
assert_equal
:string
,
@schema
.
type_of
(
:avatar_file_name
)
end
should
"make the content_type column a string"
do
assert_equal
:string
,
@schema
.
type_of
(
:avatar_content_type
)
end
should
"make the file_size column an integer"
do
assert_equal
:integer
,
@schema
.
type_of
(
:avatar_file_size
)
end
should
"make the updated_at column a datetime"
do
assert_equal
:datetime
,
@schema
.
type_of
(
:avatar_updated_at
)
end
end
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