Sha256: c7678c767f2158c45da9dda1d179dca8465db54f6a573c22cf6d2dd03befdcd4

Contents?: true

Size: 748 Bytes

Versions: 9

Compression:

Stored size: 748 Bytes

Contents

module NavigationHelpers
  # Maps a name to a path. Used by the
  #
  #   When /^I go to (.+)$/ do |page_name|
  #
  # step definition in webrat_steps.rb
  #
  def path_to(page_name)
    case page_name
    
    when /the homepage/
      '/'
    
    when /the show shares page/
      share_path(Share.first)
    
    when /the create shares page/
      new_share_path(make_parent_params(Factory(:user)))
      
    # Add more mappings here.
    # Here is a more fancy example:
    #
    #   when /^(.*)'s profile page$/i
    #     user_profile_path(User.find_by_login($1))

    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

9 entries across 9 versions & 1 rubygems

Version Path
muck-shares-0.1.8 test/rails_root/features/support/paths.rb
muck-shares-0.1.7 test/rails_root/features/support/paths.rb
muck-shares-0.1.6 test/rails_root/features/support/paths.rb
muck-shares-0.1.5 test/rails_root/features/support/paths.rb
muck-shares-0.1.4 test/rails_root/features/support/paths.rb
muck-shares-0.1.1 test/rails_root/features/support/paths.rb
muck-shares-0.1.2 test/rails_root/features/support/paths.rb
muck-shares-0.1.3 test/rails_root/features/support/paths.rb
muck-shares-0.1.0 test/rails_root/features/support/paths.rb