Class: ShellMock::SpawnMonkeyPatch
- Inherits:
-
MonkeyPatch
- Object
- MonkeyPatch
- ShellMock::SpawnMonkeyPatch
- Defined in:
- lib/shell_mock/spawn_monkey_patch.rb
Instance Method Summary collapse
Instance Method Details
#disable ⇒ Object
38 39 40 41 42 |
# File 'lib/shell_mock/spawn_monkey_patch.rb', line 38 def disable super disable_for(Process.eigenclass) if Process.respond_to?(method_alias, true) end |
#enable ⇒ Object
32 33 34 35 36 |
# File 'lib/shell_mock/spawn_monkey_patch.rb', line 32 def enable enable_for(Process.eigenclass) unless Process.respond_to?(method_alias, true) super end |
#method_name ⇒ Object
8 9 10 |
# File 'lib/shell_mock/spawn_monkey_patch.rb', line 8 def method_name :spawn end |
#override(*args) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/shell_mock/spawn_monkey_patch.rb', line 12 def override(*args) env, command, = SpawnArguments(*args) stub = StubRegistry.stub_matching(env, command, ) if stub stub.ran stub.side_effect.call __un_shell_mocked_spawn(stub.to_oneliner, ) else if ShellMock.let_commands_run? __un_shell_mocked_spawn(env, command, ) else raise NoStubSpecified.new(env, command, ) end end end |