Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
62d31ead
Commit
62d31ead
authored
Jul 20, 2012
by
Alex Chaffee
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #86 from kuroda/without_primary_key
expect a model without primary key
parents
bef0c494
be82e0c0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
annotate_models.rb
lib/annotate/annotate_models.rb
+1
-1
annotate_models_spec.rb
spec/annotate/annotate_models_spec.rb
+19
-1
No files found.
lib/annotate/annotate_models.rb
View file @
62d31ead
...
...
@@ -82,7 +82,7 @@ module AnnotateModels
attrs
=
[]
attrs
<<
"default(
#{
quote
(
col
.
default
)
}
)"
unless
col
.
default
.
nil?
attrs
<<
"not null"
unless
col
.
null
attrs
<<
"primary key"
if
col
.
name
.
to_sym
==
klass
.
primary_key
.
to_sym
attrs
<<
"primary key"
if
klass
.
primary_key
&&
col
.
name
.
to_sym
==
klass
.
primary_key
.
to_sym
col_type
=
(
col
.
type
||
col
.
sql_type
).
to_s
if
col_type
==
"decimal"
...
...
spec/annotate/annotate_models_spec.rb
View file @
62d31ead
...
...
@@ -8,7 +8,7 @@ describe AnnotateModels do
options
=
{
:connection
=>
mock
(
"Conn"
,
:indexes
=>
[]),
:table_name
=>
table_name
,
:primary_key
=>
primary_key
.
to_s
,
:primary_key
=>
primary_key
&&
primary_key
.
to_s
,
:column_names
=>
columns
.
map
{
|
col
|
col
.
name
.
to_s
},
:columns
=>
columns
}
...
...
@@ -55,6 +55,24 @@ describe AnnotateModels do
EOS
end
it
"should get schema info even if the primary key is not set"
do
klass
=
mock_class
(
:users
,
nil
,
[
mock_column
(
:id
,
:integer
),
mock_column
(
:name
,
:string
,
:limit
=>
50
)
])
AnnotateModels
.
get_schema_info
(
klass
,
"Schema Info"
).
should
eql
(
<<-
EOS
)
# Schema Info
#
# Table name: users
#
# id :integer not null
# name :string(50) not null
#
EOS
end
it
"should get schema info as RDoc"
do
klass
=
mock_class
(
:users
,
:id
,
[
mock_column
(
:id
,
:integer
),
...
...
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