2017-11-24 3 views
0

私はNeo4j V7からV9にRails 4.2.6アプリケーションを移行しました。いくつかの設定を変更した後、私はrspecコマンドを実行し、すべてのテストが失敗しています。私が受け取っているエラーは次のとおりです: no member ssl in structRails Neo4j構造体エラーのメンバー 'ssl'を意味しない

it "finds amendments for a given item" do 
    request.env['HTTP_ACCEPT'] = "application/json" 
    get :find, { amendment: { cid: "X1", namespace: "http://www.example.com" } } 
    expect(response.content_type).to include("application/json") 
    expect(response.code).to eq("200") 
    result = remove_id_and_timestamps(response) 

    #write_yaml_file(result, sub_dir, "amendments_controller_find_1.txt") 
    expected = read_yaml_file(sub_dir, "amendments_controller_find_1.txt") 
    result.should == expected 
    #expect(result).to eq(expected) 
end 

エラーが発生する前にすべてのエラーが発生していました。 エラーで報告されたSSLの問題を解決する方法を教えてください。

答えて

1

同じ問題持つことができる私は私の問題への解決策を見つけたと私は皆とそれを共有している:私は、このコマンドrake neo4j:generate_schema_migration[..,..,..] 2を実行します) 1)私は、この2つのコマンドの後rake RAILS_ENV=test neo4j:migrate を実行して、私は自分を解決問題

関連する問題