Test for spec=any in harvests/new.

This commit is contained in:
Miles Gould
2014-01-05 13:20:07 +00:00
parent deb706607e
commit 4b88bf80f1

View File

@@ -10,8 +10,9 @@ describe "harvests/new" do
assert_select "form", :action => harvests_path, :method => "post" do
assert_select "select#harvest_crop_id", :name => "harvest[crop_id]"
assert_select "select#harvest_plant_part_id", :name => "harvest[plant_part_id]"
assert_select "input#harvest_quantity", :name => "harvest[quantity]"
assert_select "input#harvest_weight_quantity", :name => "harvest[quantity]"
# some browsers interpret <input type="number"> without a step as "integer"
assert_select "input#harvest_quantity[step=any]", :name => "harvest[quantity]"
assert_select "input#harvest_weight_quantity[step=any]", :name => "harvest[quantity]"
assert_select "select#harvest_unit", :name => "harvest[unit]"
assert_select "select#harvest_weight_unit", :name => "harvest[unit]"
assert_select "textarea#harvest_description", :name => "harvest[description]"