mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Adjust call argument matching
Reenable test for https://github.com/icy-arctic-fox/spectator/issues/44 and https://github.com/icy-arctic-fox/spectator/issues/47
This commit is contained in:
parent
a967dce241
commit
fbe877690d
2 changed files with 9 additions and 5 deletions
|
@ -26,12 +26,15 @@ Spectator.describe "GitHub Issue #44" do
|
|||
# Original issue uses keyword arguments in place of positional arguments.
|
||||
context "keyword arguments in place of positional arguments" do
|
||||
before_each do
|
||||
expect(Process).to receive(:run).with(command, shell: true, output: :pipe).and_raise(exception)
|
||||
pipe = Process::Redirect::Pipe
|
||||
expect(Process).to receive(:run).with(command, shell: true, output: pipe).and_raise(exception)
|
||||
end
|
||||
|
||||
it "must stub Process.run", skip: "Keyword arguments in place of positional arguments not supported with expect-receive" do
|
||||
Process.run(command, shell: true, output: :pipe) do |_process|
|
||||
end
|
||||
it "must stub Process.run" do
|
||||
expect do
|
||||
Process.run(command, shell: true, output: :pipe) do |_process|
|
||||
end
|
||||
end.to raise_error(File::NotFoundError, "File not found")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue