Guest User

Untitled

a guest
Nov 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. pid = Process.fork { exec("some command") }
  2.  
  3. expect(Process).to receive(:fork)
  4.  
  5. (Process).fork(*(any args))
  6. expected: 1 time with any arguments
  7. received: 0 times with any arguments
Add Comment
Please, Sign In to add comment