require "../spec_helper"
WebMock.stub(:get, "example.com/form/textarea").to_return(body:
<<-BODY
page_title
BODY
)
describe "Form Fields CheckBox" do
agent = Mechanize.new
page = agent.get("http://example.com/form/textarea")
form = page.forms[0]
it "returns textareas" do
form.textareas.size.should eq 2
end
end