Sha256: 38dba7b25ea3221c329bda182e89f54a29e0138a5036828a0640284b47ca79a4

Contents?: true

Size: 646 Bytes

Versions: 4

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+/)
        self.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

4 entries across 4 versions & 1 rubygems

Version Path
mighty_grid-0.6.0 features/support/paths.rb
mighty_grid-0.5.0 features/support/paths.rb
mighty_grid-0.4.0 features/support/paths.rb
mighty_grid-0.3.3 features/support/paths.rb