Sha256: 3ef2a891b1ef3af0699e2758c07142695ad9c0fd2641cada46c0d41cfffde6e7

Contents?: true

Size: 646 Bytes

Versions: 7

Compression:

Stored size: 646 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.feature
  #
  def path_to(page_name)
    case page_name

    when /^the list of users\s?page$/
      '/users'

    else
      begin
        page_name =~ /^the (.*) page$/
        path_components = $1.split(/\s+/)
        send(path_components.push('path').join('_').to_sym)
      rescue NoMethodError, ArgumentError
        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 & 1 rubygems

Version Path
mighty_grid-2.1.1 features/support/paths.rb
mighty_grid-2.1.0 features/support/paths.rb
mighty_grid-2.0.0 features/support/paths.rb
mighty_grid-2.0.0.rc1 features/support/paths.rb
mighty_grid-1.0.0 features/support/paths.rb
mighty_grid-0.7.0 features/support/paths.rb
mighty_grid-0.6.1 features/support/paths.rb