2

我在 Windows 7 Pro 上并尝试将 RubyTest 与 Sublime Text 2 一起使用。我已经安装了它。我在测试结果窗口中没有得到任何输出。例如,如果我运行一个测试,我会在控制台中看到以下内容:

运行bin/rspec spec\features\static_pages_spec.rb -l9 重新加载/C/Users/jgriffin/AppData/Roaming/Sublime Text 2/Packages/User/RubyTest.last-run

如果我在 Dos 窗口的命令行中运行它,它就会执行。如果我在 Git Bash 窗口的命令行中运行它,它不会。

我宁愿用完我的 Bash 窗口。我尝试在 Bash 和 DOS 命令窗口中从命令行运行 subl,但结果似乎总是相同的。根本没有输出。

我正在运行:

ruby 1.9.3p125 (2012-02-16) [i386-mingw32]

任何帮助表示赞赏!

4

2 回答 2

0

如果您还没有通过 Sublime 在 Windows 上工作,您可能需要修改该User - RubyTest.sublime-settings文件以包含前缀。bundle exec不久前我遇到了同样的问题。例如:

{
  "erb_verify_command": "bundle exec erb -xT - {file_name} | ruby -c",
  "ruby_verify_command": "bundle exec ruby -c {file_name}",

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

  "run_cucumber_command": "bundle exec cucumber {relative_path}",
  "run_single_cucumber_command": "bundle exec cucumber {relative_path} -l{line_number}",

  "run_rspec_command": "bundle exec rspec {relative_path}",
  "run_single_rspec_command": "bundle exec rspec {relative_path} -l{line_number}",

  "ruby_unit_folder": "test",
  "ruby_cucumber_folder": "features",
  "ruby_rspec_folder": "spec",

  "ruby_use_scratch" : false,
  "save_on_run": false,
  "ignored_directories": [".git", "vendor", "tmp"]
}
于 2013-01-16T01:55:23.040 回答
0

我遇到了同样的问题,调试控制台中没有错误,实际控制台中没有输出。

在我的情况下,我需要以管理员身份运行 sublime text(sublime_text.exe > 属性 > 兼容性 > 以管理员身份运行此程序)。

然后我通过 sublime text 重新运行测试,大约 10 秒后它终于输出了测试结果。

我希望这有帮助。

于 2013-10-29T11:29:41.907 回答