diff --git a/app/helpers/users_helper.rb b/app/helpers/getting_started_helper.rb similarity index 98% rename from app/helpers/users_helper.rb rename to app/helpers/getting_started_helper.rb index 693305e42..af25a9bd7 100644 --- a/app/helpers/users_helper.rb +++ b/app/helpers/getting_started_helper.rb @@ -2,7 +2,7 @@ # licensed under the Affero General Public License version 3 or later. See # the COPYRIGHT file. -module UsersHelper +module GettingStartedHelper # @return [Boolean] The user has filled out all profile fields def has_completed_profile? profile = current_user.person.profile diff --git a/spec/helpers/users_helper_spec.rb b/spec/helpers/getting_started_helper_spec.rb similarity index 99% rename from spec/helpers/users_helper_spec.rb rename to spec/helpers/getting_started_helper_spec.rb index 5feeca8e7..5067fc618 100644 --- a/spec/helpers/users_helper_spec.rb +++ b/spec/helpers/getting_started_helper_spec.rb @@ -3,7 +3,7 @@ # the COPYRIGHT file. require 'spec_helper' -describe UsersHelper do +describe GettingStartedHelper do before do @current_user = alice end