Sha256: 3c4ad25b94a7c211729c568ee742b36c22f4375c40b58e97a5e4fa42f4fccd07

Contents?: true

Size: 1.44 KB

Versions: 20

Compression:

Stored size: 1.44 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/
      '/'
    
    # 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))

    # added by script/generate pickle path

    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

    when /^the (.+?) page$/                                         # translate to named route
      send "#{$1.downcase.gsub(' ','_')}_path"
  
    # end added by pickle path

    else
      raise "Can't find mapping from \"#{page_name}\" to a path.\n" +
        "Now, go and add a mapping in #{__FILE__}"
    end
  end
end

World(NavigationHelpers)

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
pickle-0.2.11 features/support/paths.rb
pickle-0.2.10 features/support/paths.rb
pickle-0.2.9 features/support/paths.rb
pickle-dupe-0.3.1 features/support/paths.rb
pickle-dupe-0.3.0 features/support/paths.rb
pickle-dupe-0.2.2 features/support/paths.rb
pickle-0.2.8 features/support/paths.rb
pickle-0.2.7 features/support/paths.rb
pickle-0.2.6 features/support/paths.rb
pickle-dupe-0.2.1 features/support/paths.rb
pickle-0.2.5 features/support/paths.rb
pickle-0.2.4 features/support/paths.rb
pickle-0.2.3 features/support/paths.rb
pickle-dupe-0.2.0 features/support/paths.rb
pickle-0.2.2 features/support/paths.rb
kbaum-pickle-0.2.1.4 features/support/paths.rb
kbaum-pickle-0.2.1.3 features/support/paths.rb
kbaum-pickle-0.2.1.2 features/support/paths.rb
pickle-dupe-0.1.0 features/support/paths.rb
kbaum-pickle-0.2.1.1 features/support/paths.rb