gpt4 book ai didi

ruby-on-rails - 在 RubyMine 中运行 rspec 测试得到 `bin/rspec:2: ` $ (' is not allowed as a global variable name`

转载 作者:数据小太阳 更新时间:2023-10-29 08:11:19 26 4
gpt4 key购买 nike

我有一个测试 Controller 的 rspec 文件。

当我右键单击此 rspec 文件并为我所在的文件选择 Run/Debug 时,它会在控制台中显示以下内容:

Fast Debugger (ruby-debug-ide 0.6.1.beta2, debase 0.2.2.beta8, file filtering is supported) listens on 0.0.0.0:64675
Uncaught exception: /develop/warranty-web/bin/rspec:2: `$(' is not allowed as a global variable name

Process finished with exit code 0

我的 bin/rspec 文件有两行 bash 脚本:

#!/usr/bin/env bash
exec $(dirname $0)/spring rspec "$@"

所以 ruby​​mine(或 rspec?不确定)正在将 bash 脚本解释为 ruby​​。为什么会这样,我该如何修复它以便调试文件?

--编辑:--

如果有帮助,这里是规范文件。

require 'spec_helper'
require 'ruby-debug'

describe Api::V1::Internal::SessionsController do
before do
@request.env['devise.mapping'] = Devise.mappings['api_v1_internal_user']
end

context 'when invalid email' do
it 'returns a 401 (invalid credentials)' do
post :create, user: { email: 'invalidemail@mail.com', password: 'madeuppassword' }
expect(response.status).to eq(401)
end
end
context 'when valid email but invalid password' do
it 'returns a 401 (invalid credentials)' do
post :create, user: { email: 'justin.eisenhauer@metova.com', password: 'madeuppassword' }
expect(response.status).to eq(401)
end
end
context 'when valid email and password' do
it 'returns a 200 (ok)' do
post :create, user: { email: 'justin.eisenhauer@metova.com', password: 'metova' }
expect(response.status).to eq(200)
end
end
end

最佳答案

对于任何有同样问题的人...我最终做的是,我的一个 friend 告诉我将 rspec 重命名为 rspec.rb,这样它实际上可以像 ruby​​ 一样运行。然后将其内容更改为:

require 'pathname'
ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",
Pathname.new(__FILE__).realpath)

require 'rubygems'
require 'bundler/setup'

load Gem.bin_path('rspec-core', 'rspec')

关于ruby-on-rails - 在 RubyMine 中运行 rspec 测试得到 `bin/rspec:2: ` $ (' is not allowed as a global variable name`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39712492/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com