我有一个 cucumber 步骤,最近在将 添加到我的布局时开始失败。如果我取出 ,则测试全部通过。当我放回原处时,使用WebRat提供的click_link方法的每个测试都会失败,并显示以下消息:

And he follows 'Unsubscribe'
  incompatible encoding regexp match (UTF-8 regexp with ASCII-8BIT string) (Encoding::CompatibilityError)
  (eval):3:in `click_link`
  (eval):2:in `click_link`
  /path_to_project/webrat_steps.rb:19:in `/^(I|he|she) follows? '([^\"]*)'$/'
  features/manage_subscriptions.feature:59:in `And he follows 'Unsubscribe''

有没有人有什么建议?

最佳答案

在Ruby 1.9和Rails 2.3.2下,我遇到了同样的问题,为了使其正常工作,我必须在webrat gem中进行以下更改。

lib/webrat/core/locators/link_locator.rb中,我必须更改:

def replace_nbsp(str)
  str.gsub([0xA0].pack('U'), ' ')
end


def replace_nbsp(str)
  if str.respond_to?(:valid_encoding?)
    str.force_encoding('UTF-8').gsub(/\xc2\xa0/u, ' ')
  else
    str.gsub(/\xc2\xa0/u, ' ')
  end
end

也有一个补丁提交给webrat Ticket 260,但是它对我不起作用,因此我必须执行上述操作。希望这可以帮助。

关于ruby-on-rails - cucumber 和/或Webrat讨厌吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1268094/

10-13 04:38