mirror of
https://github.com/kaminari/kaminari.git
synced 2022-11-09 13:44:37 -05:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
|
module NavigationHelpers
|
||
|
# Put helper methods related to the paths in your application here.
|
||
|
|
||
|
def homepage
|
||
|
"/"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
RSpec.configuration.include NavigationHelpers, :type => :acceptance
|