Tests for crop inflections

This commit is contained in:
Miles Gould
2015-01-11 11:19:12 +00:00
parent 10ae117914
commit 7ef8afb1ba

View File

@@ -0,0 +1,13 @@
require 'spec_helper'
feature "irregular crop inflections" do
# We're just testing a couple of representative crops to
# check that inflection works: you don't need to add
# every crop here.
scenario "crops which are mass nouns" do
expect("kale".pluralize).to eq "kale"
expect("broccoli".pluralize).to eq "broccoli"
end
end