BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
1ab1526d
Commit
1ab1526d
authored
Oct 27, 2014
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix raw view for public snippets
parent
a2dfff41
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
snippets_controller.rb
app/controllers/snippets_controller.rb
+1
-1
public_snippets.feature
features/snippets/public_snippets.feature
+5
-0
public_snippets.rb
features/steps/snippets/public_snippets.rb
+8
-0
No files found.
app/controllers/snippets_controller.rb
View file @
1ab1526d
...
...
@@ -9,7 +9,7 @@ class SnippetsController < ApplicationController
before_filter
:set_title
skip_before_filter
:authenticate_user!
,
only:
[
:index
,
:user_index
,
:show
]
skip_before_filter
:authenticate_user!
,
only:
[
:index
,
:user_index
,
:show
,
:raw
]
respond_to
:html
...
...
features/snippets/public_snippets.feature
View file @
1ab1526d
...
...
@@ -3,3 +3,8 @@ Feature: Public snippets
Given
There is public
"Personal snippet one"
snippet
And
I visit snippet page
"Personal snippet one"
Then
I should see snippet
"Personal snippet one"
Scenario
:
Unauthenticated user should see raw public snippets
Given
There is public
"Personal snippet one"
snippet
And
I visit snippet raw page
"Personal snippet one"
Then
I should see raw snippet
"Personal snippet one"
features/steps/snippets/public_snippets.rb
View file @
1ab1526d
...
...
@@ -7,10 +7,18 @@ class Spinach::Features::PublicSnippets < Spinach::FeatureSteps
page
.
should
have_no_xpath
(
"//i[@class='public-snippet']"
)
end
step
'I should see raw snippet "Personal snippet one"'
do
page
.
should
have_text
(
snippet
.
content
)
end
step
'I visit snippet page "Personal snippet one"'
do
visit
snippet_path
(
snippet
)
end
step
'I visit snippet raw page "Personal snippet one"'
do
visit
raw_snippet_path
(
snippet
)
end
def
snippet
@snippet
||=
PersonalSnippet
.
find_by!
(
title:
"Personal snippet one"
)
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