summaryrefslogtreecommitdiff
path: root/test/channel_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/channel_test.rb')
-rw-r--r--test/channel_test.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/channel_test.rb b/test/channel_test.rb
index c271361..174b22c 100644
--- a/test/channel_test.rb
+++ b/test/channel_test.rb
@@ -29,15 +29,6 @@ class ChannelTest < Test::Unit::TestCase
assert_equal [c1, c2], results
end
- def test_subsystem_should_delegate_to_component_channels
- c1, c2, results = mock('channel'), mock('channel'), []
- c1.expects(:subsystem).with('sftp').yields(c1)
- c2.expects(:subsystem).with('sftp').yields(c2)
- channel = Net::SSH::Multi::Channel.new(mock('session'), [c1, c2])
- assert_equal channel, channel.subsystem('sftp') { |c| results << c }
- assert_equal [c1, c2], results
- end
-
def test_request_pty_should_delegate_to_component_channels
c1, c2, results = mock('channel'), mock('channel'), []
c1.expects(:request_pty).with(:foo => 5).yields(c1)