File: spawn_spec.rb

package info (click to toggle)
ruby-simplecov 0.22.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,500 kB
  • sloc: ruby: 5,550; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'
require 'open3'
describe 'spawn' do
  it 'calls things' do
    Dir.chdir(File.expand_path('..', __dir__)) do
      stdout, exitstatus = Open3.capture2("ruby -r./.simplecov_spawn lib/command")
      expect(stdout.chomp).to eq 'done'
    end
  end
end