Sha256: 044d0ae646518ac320289c8d9ef5e59b23935a8773732276f3e11cfc45c5a2c1

Contents?: true

Size: 1.26 KB

Versions: 7

Compression:

Stored size: 1.26 KB

Contents

module NavigationHelpers
  # Maps a name to a path. Used by the
  #
  #   When /^I go to (.+)$/ do |page_name|
  #
  # step definition in web_steps.rb
  #
  def path_to(page_name)
    case page_name

    when /the home\s?page/
      '/'
    when /the dashboard/
      "/admin"
    when /the new post page/
      "/admin/posts/new"

    # the index page for posts in the root namespace
    # the index page for posts in the user_admin namespace
    when /^the index page for (.*) in the (.*) namespace$/
      if $2 != 'root'
        send(:"#{$2}_#{$1}_path")
      else
        send(:"#{$1}_path")
      end

    # same as above, except defaults to admin namespace
    when /^the index page for (.*)$/
      send(:"admin_#{$1}_path")

    # Add more mappings here.
    # Here is an example that pulls values out of the Regexp:
    #
    #   when /^(.*)'s profile page$/i
    #     user_profile_path(User.find_by_login($1))

    else
      begin
        page_name =~ /the (.*) page/
        path_components = $1.split(/\s+/)
        self.send(path_components.push('path').join('_').to_sym)
      rescue Object => e
        raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
          "Now, go and add a mapping in #{__FILE__}"
      end
    end
  end
end

World(NavigationHelpers)

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
andrewroth_activeadmin-0.3.4 features/support/paths.rb
activeadmin-0.3.4 features/support/paths.rb
activeadmin-0.3.3 features/support/paths.rb
activeadmin-0.3.2 features/support/paths.rb
activeadmin-0.3.1 features/support/paths.rb
activeadmin-0.3.0 features/support/paths.rb
nsm-activeadmin-0.2.2 features/support/paths.rb