Prefix Spinach features with Spinach::Features::.

This commit is contained in:
Ciro Santilli 2014-09-22 16:30:25 +02:00
parent b43e918a73
commit de6c8778f7
52 changed files with 52 additions and 52 deletions

View File

@ -1,4 +1,4 @@
class AdminActiveTab < Spinach::FeatureSteps
class Spinach::Features::AdminActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedActiveTab

View File

@ -1,4 +1,4 @@
class AdminGroups < Spinach::FeatureSteps
class Spinach::Features::AdminGroups < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedUser

View File

@ -1,4 +1,4 @@
class AdminLogs < Spinach::FeatureSteps
class Spinach::Features::AdminLogs < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedAdmin

View File

@ -1,4 +1,4 @@
class AdminProjects < Spinach::FeatureSteps
class Spinach::Features::AdminProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedAdmin

View File

@ -1,4 +1,4 @@
class AdminUsers < Spinach::FeatureSteps
class Spinach::Features::AdminUsers < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedAdmin

View File

@ -1,4 +1,4 @@
class DashboardActiveTab < Spinach::FeatureSteps
class Spinach::Features::DashboardActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedActiveTab

View File

@ -1,4 +1,4 @@
class Dashboard < Spinach::FeatureSteps
class Spinach::Features::Dashboard < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class EventFilters < Spinach::FeatureSteps
class Spinach::Features::EventFilters < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class DashboardIssues < Spinach::FeatureSteps
class Spinach::Features::DashboardIssues < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths

View File

@ -1,4 +1,4 @@
class DashboardMergeRequests < Spinach::FeatureSteps
class Spinach::Features::DashboardMergeRequests < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths

View File

@ -1,4 +1,4 @@
class DashboardProjects < Spinach::FeatureSteps
class Spinach::Features::DashboardProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class DashboardShortcuts < Spinach::FeatureSteps
class Spinach::Features::DashboardShortcuts < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class DashboardWithArchivedProjects < Spinach::FeatureSteps
class Spinach::Features::DashboardWithArchivedProjects < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class Groups < Spinach::FeatureSteps
class Spinach::Features::Groups < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedGroup

View File

@ -1,4 +1,4 @@
class ProfileActiveTab < Spinach::FeatureSteps
class Spinach::Features::ProfileActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedActiveTab

View File

@ -1,4 +1,4 @@
class ProfileEmails < Spinach::FeatureSteps
class Spinach::Features::ProfileEmails < Spinach::FeatureSteps
include SharedAuthentication
Then 'I visit profile emails page' do

View File

@ -1,4 +1,4 @@
class ProfileGroup < Spinach::FeatureSteps
class Spinach::Features::ProfileGroup < Spinach::FeatureSteps
include SharedAuthentication
include SharedGroup
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProfileNotifications < Spinach::FeatureSteps
class Spinach::Features::ProfileNotifications < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject

View File

@ -1,4 +1,4 @@
class Profile < Spinach::FeatureSteps
class Spinach::Features::Profile < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProfileSshKeys < Spinach::FeatureSteps
class Spinach::Features::ProfileSshKeys < Spinach::FeatureSteps
include SharedAuthentication
Then 'I should see my ssh keys' do

View File

@ -1,4 +1,4 @@
class ProjectActiveTab < Spinach::FeatureSteps
class Spinach::Features::ProjectActiveTab < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class ProjectArchived < Spinach::FeatureSteps
class Spinach::Features::ProjectArchived < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseBranches < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseBranches < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseCommits < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseCommits < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseCommitsUserLookup < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseCommitsUserLookup < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseFiles < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseFiles < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseGitRepo < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseGitRepo < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectBrowseTags < Spinach::FeatureSteps
class Spinach::Features::ProjectBrowseTags < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class CommentsOnCommitDiffs < Spinach::FeatureSteps
class Spinach::Features::CommentsOnCommitDiffs < Spinach::FeatureSteps
include SharedAuthentication
include SharedDiffNote
include SharedPaths

View File

@ -1,4 +1,4 @@
class CommentsOnCommits < Spinach::FeatureSteps
class Spinach::Features::CommentsOnCommits < Spinach::FeatureSteps
include SharedAuthentication
include SharedNote
include SharedPaths

View File

@ -1,4 +1,4 @@
class CreateProject < Spinach::FeatureSteps
class Spinach::Features::CreateProject < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectFilterLabels < Spinach::FeatureSteps
class Spinach::Features::ProjectFilterLabels < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ForkProject < Spinach::FeatureSteps
class Spinach::Features::ForkProject < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class ProjectForkedMergeRequests < Spinach::FeatureSteps
class Spinach::Features::ProjectForkedMergeRequests < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedNote

View File

@ -1,4 +1,4 @@
class ProjectGraph < Spinach::FeatureSteps
class Spinach::Features::ProjectGraph < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject

View File

@ -1,6 +1,6 @@
require 'webmock'
class ProjectHooks < Spinach::FeatureSteps
class Spinach::Features::ProjectHooks < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectIssueTracker < Spinach::FeatureSteps
class Spinach::Features::ProjectIssueTracker < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectIssues < Spinach::FeatureSteps
class Spinach::Features::ProjectIssues < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedNote

View File

@ -1,4 +1,4 @@
class ProjectLabels < Spinach::FeatureSteps
class Spinach::Features::ProjectLabels < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectMergeRequests < Spinach::FeatureSteps
class Spinach::Features::ProjectMergeRequests < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedNote

View File

@ -1,4 +1,4 @@
class ProjectMilestones < Spinach::FeatureSteps
class Spinach::Features::ProjectMilestones < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectMultiselectBlob < Spinach::FeatureSteps
class Spinach::Features::ProjectMultiselectBlob < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectNetworkGraph < Spinach::FeatureSteps
class Spinach::Features::ProjectNetworkGraph < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class ProjectFeature < Spinach::FeatureSteps
class Spinach::Features::ProjectFeature < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectShortcuts < Spinach::FeatureSteps
class Spinach::Features::ProjectShortcuts < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class ProjectSearchCode < Spinach::FeatureSteps
class Spinach::Features::ProjectSearchCode < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectServices < Spinach::FeatureSteps
class Spinach::Features::ProjectServices < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class ProjectSnippets < Spinach::FeatureSteps
class Spinach::Features::ProjectSnippets < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedNote

View File

@ -1,4 +1,4 @@
class ProjectTeamManagement < Spinach::FeatureSteps
class Spinach::Features::ProjectTeamManagement < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths

View File

@ -1,4 +1,4 @@
class DiscoverSnippets < Spinach::FeatureSteps
class Spinach::Features::DiscoverSnippets < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedSnippet

View File

@ -1,4 +1,4 @@
class SnippetsFeature < Spinach::FeatureSteps
class Spinach::Features::SnippetsFeature < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedProject

View File

@ -1,4 +1,4 @@
class UserSnippets < Spinach::FeatureSteps
class Spinach::Features::UserSnippets < Spinach::FeatureSteps
include SharedAuthentication
include SharedPaths
include SharedSnippet