Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
00cd3ecc
Commit
00cd3ecc
authored
May 06, 2014
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use stub in testing.
parent
b96ad52e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
features/steps/project/wiki.rb
features/steps/project/wiki.rb
+3
-2
No files found.
features/steps/project/wiki.rb
View file @
00cd3ecc
...
@@ -96,8 +96,9 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
...
@@ -96,8 +96,9 @@ class Spinach::Features::ProjectWiki < Spinach::FeatureSteps
end
end
And
'I click on existing image link'
do
And
'I click on existing image link'
do
Gollum
::
Wiki
.
any_instance
.
should_receive
(
:file
).
with
(
"image.jpg"
,
"master"
,
true
).
and_return
(
Gollum
::
File
.
new
(
wiki
.
wiki
))
file
=
Gollum
::
File
.
new
(
wiki
.
wiki
)
Gollum
::
File
.
any_instance
.
should_receive
(
:mime_type
).
and_return
(
"image/jpeg"
)
Gollum
::
Wiki
.
any_instance
.
stub
(
:file
).
with
(
"image.jpg"
,
"master"
,
true
).
and_return
(
file
)
Gollum
::
File
.
any_instance
.
stub
(
:mime_type
).
and_return
(
"image/jpeg"
)
page
.
should
have_link
(
'image'
,
href:
"image.jpg"
)
page
.
should
have_link
(
'image'
,
href:
"image.jpg"
)
click_on
"image"
click_on
"image"
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