0

rvmとruby 1.8.7を使用してOSx10.8でimacを使用して、オンラインのRuby on Railsチュートリアルに従っています。bundle exec rspec spec/ を実行すると、これらのエラーが発生します

/Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:245:in `load': /Users/hetzerbr/sample_app/spec/models/user_spec.rb:88: syntax error, unexpected kEND, expecting $end (SyntaxError)
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:245:in `load'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:236:in `load_dependency'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/activesupport-3.2.13/lib/active_support/dependencies.rb:245:in `load'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/configuration.rb:780:in `load_spec_files'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/configuration.rb:780:in `map'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/configuration.rb:780:in `load_spec_files'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/command_line.rb:22:in `run'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/runner.rb:66:in `run'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/gems/rspec-core-2.11.1/lib/rspec/core/runner.rb:8:in `autorun'
from /Users/hetzerbr/.rvm/gems/ruby-1.8.7-p374/bin/ruby_noexec_wrapper:14

私のuser_spec.rbファイルは次のようになります。エラーは、あるべきではない場所に終了を配置したか、行方不明でどこかで終了した可能性があると思います。

    require 'spec_helper'

describe User do

  before do
    @user = User.new(:name => "Example User", :email => "user@example.com", :password => "foobar", :password_confirmation => "foobar")
  end

  subject { @user }

  it { should respond_to(:name) }
  it { should respond_to(:email) }
  it { should respond_to(:password_digest) }
  it { should respond_to(:password) }
  it { should respond_to(:password_confirmation) }
   it { should respond_to(:authenticate) }

  it { should be_valid }

  describe "when name is not present" do
    before { @user.name = " " }
    it { should_not be_valid }

    describe "when email is not present" do
    before { @user.email = " " }
    it { should_not be_valid }

    describe "when name is too long" do
    before { @user.name = "a" * 51 }
    it { should_not be_valid }
  end 
end

 describe "when email address is already taken" do
    before do
      user_with_same_email = @user.dup
      user_with_same_email.email = @user.email.upcase
      user_with_same_email.save
    end

    it { should_not be_valid }
  end
end
 describe "when email format is invalid" do
    it "should be invalid" do
      addresses = %w[user@foo,com user_at_foo.org example.user@foo.
                     foo@bar_baz.com foo@bar+baz.com foo@bar..com]
      addresses.each do |invalid_address|
        @user.email = invalid_address
        expect(@user).not_to be_valid
      end
    end
  end

  describe "when email format is valid" do
    it "should be valid" do
      addresses = %w[user@foo.COM A_US-ER@f.b.org frst.lst@foo.jp a+b@baz.cn]
      addresses.each do |valid_address|
        @user.email = valid_address
        expect(@user).to be_valid
      end
    end
  end
end

describe "email address with mixed case" do
    let(:mixed_case_email) { "Foo@ExAMPle.CoM" }

    it "should be saved as all lower-case" do
      @user.email = mixed_case_email
      @user.save
      expect(@user.reload.email).to eq mixed_case_email.downcase
    end
  end

describe "when password is not present" do
    before do
      @user = User.new(:name => "Example User", :email => "user@example.com",
                       :password => " ", :password_confirmation => " ")
    end
    it { should_not be_valid }
  end

  describe "when password doesn't match confirmation" do
    before { @user.password_confirmation = "mismatch" }
    it { should_not be_valid }
  end
end

describe "with a password that's too short" do
    before { @user.password = @user.password_confirmation = "a" * 5 }
    it { should be_invalid }
  end

  describe "return value of authenticate method" do
    before { @user.save }
    let(:found_user) { User.find_by(:email => @user.email) }

    describe "with valid password" do
      it { should eq found_user.authenticate(@user.password) }
    end

    describe "with invalid password" do
      let(:user_for_invalid_password) { found_user.authenticate("invalid") }

      it { should_not eq user_for_invalid_password }
      specify { expect(user_for_invalid_password).to be_false }
    end
  end
end
4

2 に答える 2

0

new()これは、 mass-assign 中にメソッドに渡す必要があるハッシュです。試してみてください{}

@user = User.new( { :name => "Example User", :email => "user@example.com", :password => "foobar", :password_confirmation => "foobar" } )

エラー行で:syntax error, unexpected keyword_end, expecting $end (SyntaxError) kENDファイルの終わりを意味しますが$end、キーワードの終了を意味します。describe doコードの本体を1つずつ閉じる必要がありますend

于 2013-07-29T16:51:50.363 に答える