0

RubyTest を使用した SublimeText では、

0.24053 秒で終了 6 例、0 失敗

シード 6928 でランダム化

[6.4秒で終了]

しかし、仮想マシン(bundle exec rspecを使用したコンソール)では速度は

0.50997 秒で終了6 例、0 失敗

シード 4758 でランダム化

それは正常ですか?

変更後、"run_rspec_command": "bundle exec rspec {relative_path} --drb"私は得ました

No DRb server is running. Running in local process instead ...
Finished in 0.21903 seconds
6 examples, 0 failures

Randomized with seed 12822

[Finished in 6.9s]
4

1 に答える 1

0

Browse to - Sublime: Preferences -> Package Settings -> RubyTest -> Settings - Default.

In that file, change

"run_rspec_command": "rspec {relative_path}" 

to

"run_rspec_command": "bundle exec rspec {relative_path} --drb"

Now try executing it.

于 2013-09-15T15:39:53.477 に答える