Repository URL to install this package:
|
Version:
1.0.0.pre ▾
|
require 'active_admin/view_helpers/fields_for'
describe ActiveAdmin::ViewHelpers::FormHelper, ".fields_for" do
include ActiveAdmin::ViewHelpers::FormHelper
it "should skip :action, :controller and :commit" do
expect(fields_for_params(
scope: "All", action: "index", controller: "PostController", commit: "Filter", utf8: "Yes!")).
to eq [ { scope: "All" } ]
end
it "should skip the except" do
expect(fields_for_params({scope: "All", name: "Greg"}, except: :name)).
to eq [ { scope: "All" } ]
end
it "should allow an array for the except" do
expect(fields_for_params({scope: "All", name: "Greg", age: "12"}, except: [:name, :age])).
to eq [ { scope: "All" } ]
end
it "should work with hashes" do
params = fields_for_params(filters: { name: "John", age: "12" })
expect(params.size).to eq 2
expect(params).to include({"filters[name]" => "John" })
expect(params).to include({ "filters[age]" => "12" })
end
it "should work with nested hashes" do
expect(fields_for_params(filters: { user: { name: "John" }})).
to eq [ { "filters[user][name]" => "John" } ]
end
it "should work with arrays" do
expect(fields_for_params(people: ["greg", "emily", "philippe"])).
to eq [ { "people[]" => "greg" },
{ "people[]" => "emily" },
{ "people[]" => "philippe" } ]
end
it "should work with symbols" do
expect(fields_for_params(filter: :id)).
to eq [ { filter: "id" } ]
end
it "should work with booleans" do
expect(fields_for_params(booleantest: false)).to eq [ { booleantest: false } ]
end
end