9 lines
197 B
Ruby
9 lines
197 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 |