Sha256: 4fd30d995bc9bd03845397865c33ebe5d50c8fa61d5318dc01b8df136d22a93e

Contents?: true

Size: 1.91 KB

Versions: 17

Compression:

Stored size: 1.91 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))

    # the following are examples using path_to_pickle

    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 simple panel page/
      '/panel/simple'

    when /the server caller page/
      '/panel/server_caller'

    when /the component loader page/
      '/panel/component_loader'

    when /the "(.*)" view/
      embedded_components_path(:action => $1.gsub(" ", "_"))

    when /the (.*) test page/
      components_path(:component => $1)

    when /the "(.+)" version of the (.*) page/
      components_path(:component => $2, :locale => $1)

    else
      begin
        page_name =~ /the (.*) page/
        path_components = $1.split(/\s+/)
        self.send(path_components.push('path').join('_').to_sym)
      rescue Object => e
        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

17 entries across 17 versions & 2 rubygems

Version Path
netzke-basepack-0.8.4 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.8.3 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.8.2 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.8.1 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.8.0 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.7 test/basepack_test_app/features/support/paths.rb
netzke-basepack-zh-0.7.6 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.6 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.5 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.4 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.3 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.2 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.7.1 test/basepack_test_app/features/support/paths.rb
netzke-basepack-0.6.5 test/rails_app/features/support/paths.rb
netzke-basepack-0.7.0 test/rails_app/features/support/paths.rb
netzke-basepack-0.6.4 features/support/paths.rb
netzke-basepack-0.6.3 features/support/paths.rb