RSpec:如何用重音编写测试?

时间:2012-11-29 09:16:35

标签: testing rspec cucumber

我是黄瓜和rspec的新手,我正在尝试测试一个按钮,其文本为“Regístrate”(请注意重音“í”)。

在我的应用程序中,我有很多用西班牙语编写的控件,带有重音áéíóú。但由于带有重音的元音,我收到错误。我确信有一个简单的解决方案,但我没有找到解决方案。

我可以更改测试说明,但不能更改用户应用程序中的单词...任何建议?

describe "signup" do

  before { visit signup_path }

  let(:submit) { "Regístrate" }

  describe "con información válida" do
    it "no debería crear el usuario" do
      expect { click_button submit }.not_to change(User, :count)
    end
  end

  describe "con información válida" do
    before do
      fill_in "Nombre",         with: "Example User"
      fill_in "Email",        with: "user@example.com"
      fill_in "Password",     with: "foobar"
      fill_in "Confirmación", with: "foobar"
    end

    it "debería crear el usuario" do
      expect { click_button submit }.to change(User, :count).by(1)
    end
  end
end

错误:

user_signup_steps.rb:3: syntax error, unexpected $end, expecting keyword_end
"Regístrate"
   ^ (SyntaxError)

1 个答案:

答案 0 :(得分:3)

看起来像编码错误。尝试将此行添加到spec文件的顶部:

# encoding: utf-8