Sha256: a5c5bc42aeda8a088145d9496d8bac70104f25e79831fb651247921351984bd9
Contents?: true
Size: 1023 Bytes
Versions: 53
Compression:
Stored size: 1023 Bytes
Contents
Feature: form_tag helper Scenario: form_tag produces relative links Given a fixture app "indexable-app" And an empty file named "config.rb" And a file named "source/form_tag.html.erb" with: """ absolute: <% form_tag "/needs_index.html#absolute", relative: true do %> <% end %> relative: <% form_tag "needs_index.html#relative", relative: true do %> <% end %> """ And a file named "source/form_tag/sub.html.erb" with: """ absolute: <% form_tag "/needs_index.html#absolute", relative: true do %> <% end %> relative: <% form_tag "../needs_index.html#relative", relative: true do %> <% end %> """ And the Server is running at "indexable-app" When I go to "/form_tag.html" Then I should see 'action="needs_index.html#absolute"' Then I should see 'action="needs_index.html#relative"' When I go to "/form_tag/sub.html" Then I should see 'action="../needs_index.html#absolute"' Then I should see 'action="../needs_index.html#relative"'
Version data entries
53 entries across 53 versions & 3 rubygems