Sha256: 429f7eb45194b5cd5328baf024b76428fe89b8a3348b7e301c40aca7d76c6210

Contents?: true

Size: 1.46 KB

Versions: 81

Compression:

Stored size: 1.46 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/
      '/'

    # the following are examples using path_to_pickle

    when /^#{capture_model}(?:'s)? page$/                           # eg. the forum's page
      path_to_pickle $1

    when /^#{capture_model}(?:'s)? #{capture_model}(?:'s)? page$/   # eg. the forum's post's page
      path_to_pickle $1, $2

    when /^#{capture_model}(?:'s)? #{capture_model}'s (.+?) page$/  # eg. the forum's post's comments page
      path_to_pickle $1, $2, :extra => $3                           #  or the forum's post's edit page

    when /^#{capture_model}(?:'s)? (.+?) page$/                     # eg. the forum's posts page
      path_to_pickle $1, :extra => $2                               #  or the forum's edit page

    # 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

81 entries across 43 versions & 5 rubygems

Version Path
pickle-0.4.7 rails_generators/pickle/templates/paths.rb
pickle-0.4.7 features/support/paths.rb
pickle-0.4.6 features/support/paths.rb
pickle-0.4.6 rails_generators/pickle/templates/paths.rb
pickle-0.4.5 features/support/paths.rb
pickle-0.4.5 rails_generators/pickle/templates/paths.rb
netzke-basepack-0.6.4 test/rails_app/features/support/paths.rb
netzke-basepack-0.6.3 test/rails_app/features/support/paths.rb
pickle-0.4.4 features/support/paths.rb
pickle-0.4.4 rails_generators/pickle/templates/paths.rb
judit-pickle-0.4.2 features/support/paths.rb
judit-pickle-0.4.2 rails_generators/pickle/templates/paths.rb
netzke-basepack-0.6.2 test/rails_app/features/support/paths.rb
netzke-basepack-0.6.1 test/rails_app/features/support/paths.rb
pickle-0.4.3 features/support/paths.rb
pickle-0.4.3 rails_generators/pickle/templates/paths.rb
netzke-basepack-0.6.0 test/rails_app/features/support/paths.rb
pickle-has_many_support-0.4.2 rails_generators/pickle/templates/paths.rb
pickle-has_many_support-0.4.2 features/support/paths.rb
pickle-0.4.2 features/support/paths.rb