The goal is to pass a specific boolean value (true or false) with a specific link.
I've tried with:
<%= link_to "new test", new_test_path(:crazy => true) %>
URL: /tests/new?crazy=true
view
<div class="field">
<%= f.radio_button :crazy, true %> True
<%= f.radio_button :crazy, false %> False
</div>
static_pages_controller
def home
@test = Test.new
...
end
but none of the radio buttons is selected when I click on that link.