1

所以我设置了 RubyTest / Sublime Text 3 并且工作正常。我无法让 spring 在 RubyTest 中工作。有这个神秘的设置:

"check_for_spring": false,

但是当我设置为 true 并运行测试时,它只会给我默认的 spring 命令输出,例如:

Version: 1.1.3

Usage: spring COMMAND [ARGS]

Commands for spring itself:

如果我关注此 url ( https://github.com/rails/spring ) 上的信息,调用测试的正确方法是?

bin/rake test test/functional/posts_controller_test.rb

现在我当前的测试运行设置是:

"run_ruby_unit_command": "ruby -Itest {relative_path}",
"run_single_ruby_unit_command": "ruby -Itest {relative_path} -n '{test_name}'",

如果我尝试更改为:

bin/rake test

这不起作用,即使我复制/粘贴命令路径并且它在 shell 中工作,也会给出未找到命令的错误。

我没有想法帮助!

4

2 回答 2

1

这会成功的

"run_ruby_unit_command": "export PATH=~/.rbenv/shims:$PATH; bin/rake test -Itest {relative_path}",
"run_single_ruby_unit_command": "export PATH=~/.rbenv/shims:$PATH; bin/rake test {relative_path} {test_name}",
于 2014-06-30T10:28:15.033 回答
1

我用这个

"run_ruby_unit_command": "spring rake test {relative_path}",
"run_single_ruby_unit_command": "spring rake test {relative_path} {test_name}"
于 2015-07-01T11:44:56.360 回答