Sha256: 73e16ac939135b4d72424b5ff9f6fe940158174f637a5ef47fbd9783fed87f8d

Contents?: true

Size: 919 Bytes

Versions: 4

Compression:

Stored size: 919 Bytes

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/
      root_path

    when /a proposal with comments/
      @proposal = Proposal.find(ActiveRecord::FixtureSet.identify(:clio_chupacabras))
      proposal_path(@proposal)

    when /a proposal accepting comments/
      @proposal = Proposal.find(ActiveRecord::FixtureSet.identify(:aaron_aardvarks))
      proposal_path(@proposal)

    # 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
      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

4 entries across 4 versions & 1 rubygems

Version Path
open_conference_ware-1.0.0.pre4 features/support/paths.rb
open_conference_ware-1.0.0.pre3 features/support/paths.rb
open_conference_ware-1.0.0.pre2 features/support/paths.rb
open_conference_ware-1.0.0.pre1 features/support/paths.rb