webrat/spec/api/locators/field_with_id_spec.rb

17 lines
370 B
Ruby
Raw Normal View History

require File.expand_path(File.dirname(__FILE__) + "/../../spec_helper")
2008-11-26 18:47:36 +00:00
describe "field_with_id" do
it "should work when there is a single quote in the ID" do
2008-11-27 05:27:13 +00:00
with_html <<-HTML
<html>
<form>
<input type="text" id="user's name">
</form>
</html>
HTML
field_with_id("user's name").id.should == "user's name"
end
end