class Bunny::Session
Public Instance Methods
connected?()
click to toggle source
# File lib/bunny/testing.rb, line 44 def connected? true end
next_channel_id()
click to toggle source
# File lib/bunny/testing.rb, line 52 def next_channel_id @bunny_testing_channel_id = (@bunny_testing_channel_id || 0) + 1 end
open?()
click to toggle source
# File lib/bunny/testing.rb, line 48 def open? true end
start()
click to toggle source
# File lib/bunny/testing.rb, line 56 def start self end