我有一段代码正在尝试使用 rspec 运行。
require 'spec_helper'
describe "User" do
before { @user = User.new(name: "Example User", email: "user@example.com", password: "foobar", password_confirmation: "foobar") }
subject { @user }
it { should respond_to(:name)}
end
我收到以下错误
c:\Sites\sample_app>rspec spec/models/user_spec.rb
C:/RailsInstaller/Ruby2.0.0/lib/ruby/gems/2.0.0/gems/rspec-core-2.13.1/lib/rspec
/core/configuration.rb:819:in `load': c:/Sites/sample_app/spec/models/user_spec.
rb:1: syntax error, unexpected tIDENTIFIER, expecting end-of-input (SyntaxError)
before { @user...er'
现在我在一个新文件中重新输入测试并运行它并且没有错误。我想有一些编码问题或一些我没有了解的东西,我没有得到。有没有人可以阐明这个问题?