Refactor explore area tests. Replaced old links
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
parent
367445fdcd
commit
f0bfeb6e33
9 changed files with 23 additions and 23 deletions
|
@ -46,5 +46,5 @@
|
||||||
%br
|
%br
|
||||||
Public projects are an easy way to allow everyone to have read-only access.
|
Public projects are an easy way to allow everyone to have read-only access.
|
||||||
.link_holder
|
.link_holder
|
||||||
= link_to public_projects_path, class: "btn btn-new" do
|
= link_to explore_projects_path, class: "btn btn-new" do
|
||||||
Browse public projects »
|
Browse public projects »
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.clearfix
|
.clearfix
|
||||||
.pull-left
|
.pull-left
|
||||||
= form_tag public_projects_path, method: :get, class: 'form-inline form-tiny' do |f|
|
= form_tag explore_projects_path, method: :get, class: 'form-inline form-tiny' do |f|
|
||||||
.form-group
|
.form-group
|
||||||
= search_field_tag :search, params[:search], placeholder: "Filter by name", class: "form-control search-text-input input-mn-300", id: "projects_search"
|
= search_field_tag :search, params[:search], placeholder: "Filter by name", class: "form-control search-text-input input-mn-300", id: "projects_search"
|
||||||
.form-group
|
.form-group
|
||||||
|
@ -17,15 +17,15 @@
|
||||||
%b.caret
|
%b.caret
|
||||||
%ul.dropdown-menu
|
%ul.dropdown-menu
|
||||||
%li
|
%li
|
||||||
= link_to public_projects_path(sort: nil) do
|
= link_to explore_projects_path(sort: nil) do
|
||||||
Name
|
Name
|
||||||
= link_to public_projects_path(sort: 'newest') do
|
= link_to explore_projects_path(sort: 'newest') do
|
||||||
Newest
|
Newest
|
||||||
= link_to public_projects_path(sort: 'oldest') do
|
= link_to explore_projects_path(sort: 'oldest') do
|
||||||
Oldest
|
Oldest
|
||||||
= link_to public_projects_path(sort: 'recently_updated') do
|
= link_to explore_projects_path(sort: 'recently_updated') do
|
||||||
Recently updated
|
Recently updated
|
||||||
= link_to public_projects_path(sort: 'last_updated') do
|
= link_to explore_projects_path(sort: 'last_updated') do
|
||||||
Last updated
|
Last updated
|
||||||
|
|
||||||
%hr
|
%hr
|
||||||
|
|
|
@ -8,4 +8,4 @@
|
||||||
= render @trending_projects
|
= render @trending_projects
|
||||||
|
|
||||||
.center
|
.center
|
||||||
= link_to 'Show all projects', public_projects_path, class: 'btn btn-primary'
|
= link_to 'Show all projects', explore_projects_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
.container
|
.container
|
||||||
%div.app_logo
|
%div.app_logo
|
||||||
%span.separator
|
%span.separator
|
||||||
= link_to public_root_path, class: "home" do
|
= link_to explore_root_path, class: "home" do
|
||||||
%h1 GITLAB
|
%h1 GITLAB
|
||||||
%span.separator
|
%span.separator
|
||||||
%h1.title= title
|
%h1.title= title
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
@public
|
@public
|
||||||
Feature: Public Projects Feature
|
Feature: Explore Projects Feature
|
||||||
Background:
|
Background:
|
||||||
Given public project "Community"
|
Given public project "Community"
|
||||||
And internal project "Internal"
|
And internal project "Internal"
|
|
@ -1,5 +1,5 @@
|
||||||
@public
|
@public
|
||||||
Feature: Public Projects Feature
|
Feature: Explore Groups Feature
|
||||||
Background:
|
Background:
|
||||||
Given group "TestGroup" has private project "Enterprise"
|
Given group "TestGroup" has private project "Enterprise"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
class Spinach::Features::PublicProjectsFeature < Spinach::FeatureSteps
|
class Spinach::Features::ExploreGroupsFeature < Spinach::FeatureSteps
|
||||||
include SharedAuthentication
|
include SharedAuthentication
|
||||||
include SharedPaths
|
include SharedPaths
|
||||||
include SharedGroup
|
include SharedGroup
|
|
@ -1,4 +1,4 @@
|
||||||
class Spinach::Features::PublicProjectsFeature < Spinach::FeatureSteps
|
class Spinach::Features::ExploreProjectsFeature < Spinach::FeatureSteps
|
||||||
include SharedAuthentication
|
include SharedAuthentication
|
||||||
include SharedPaths
|
include SharedPaths
|
||||||
include SharedProject
|
include SharedProject
|
|
@ -324,7 +324,7 @@ module SharedPaths
|
||||||
# ----------------------------------------
|
# ----------------------------------------
|
||||||
|
|
||||||
step 'I visit the public projects area' do
|
step 'I visit the public projects area' do
|
||||||
visit public_root_path
|
visit explore_projects_path
|
||||||
end
|
end
|
||||||
|
|
||||||
step 'I visit public page for "Community" project' do
|
step 'I visit public page for "Community" project' do
|
||||||
|
@ -336,7 +336,7 @@ module SharedPaths
|
||||||
# ----------------------------------------
|
# ----------------------------------------
|
||||||
|
|
||||||
step 'I visit the public groups area' do
|
step 'I visit the public groups area' do
|
||||||
visit public_groups_path
|
visit explore_groups_path
|
||||||
end
|
end
|
||||||
|
|
||||||
# ----------------------------------------
|
# ----------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue