Sha256: 3bebf4f7f102884dd805f9361390b96fbee38da133346e2a313e9fb8cf8ae6dc

Contents?: true

Size: 501 Bytes

Versions: 1

Compression:

Stored size: 501 Bytes

Contents

module NavigationHelpers
  
  # Extend the standard PathMatchers with your own paths
  # to be used in your features.
  # 
  # The keys and values here may be used in your standard web steps
  # Using:
  #
  #   When I go to the "snippets" admin page
  # 
  # would direct the request to the path you provide in the value:
  # 
  #   admin_snippets_path
  # 
  PathMatchers = {} unless defined?(PathMatchers)
  PathMatchers.merge!({
    /export/i => 'export_path'
  })
  
end

World(NavigationHelpers)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
radiant-exporter-extension-1.1.0 features/support/paths.rb