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
1f4fb0ad
Commit
1f4fb0ad
authored
Jan 02, 2015
by
Cuong Tran
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #222 from kamilbielawski/develop
Add missing test for :position => 'after'
parents
6dd28f70
080fd672
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
annotate_models_spec.rb
spec/annotate/annotate_models_spec.rb
+5
-0
No files found.
spec/annotate/annotate_models_spec.rb
View file @
1f4fb0ad
...
...
@@ -425,6 +425,11 @@ end
expect
(
File
.
read
(
@model_file_name
)).
to
eq
(
"
#{
@schema_info
}
\n
#{
@file_content
}
"
)
end
it
"should put annotation after class if :position => 'after'"
do
annotate_one_file
:position
=>
'after'
expect
(
File
.
read
(
@model_file_name
)).
to
eq
(
"
#{
@file_content
}
\n
#{
@schema_info
}
"
)
end
it
"should put annotation after class if :position => :after"
do
annotate_one_file
:position
=>
:after
expect
(
File
.
read
(
@model_file_name
)).
to
eq
(
"
#{
@file_content
}
\n
#{
@schema_info
}
"
)
...
...
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