spec/unit/rest/channel_spec.rb in ably-0.7.5 vs spec/unit/rest/channel_spec.rb in ably-0.7.6

- old
+ new

@@ -1,8 +1,8 @@ # encoding: utf-8 require 'spec_helper' -describe Ably::Rest::Channels do +describe Ably::Rest::Channel do let(:client) { instance_double('Ably::Rest::Client', encoders: [], post: instance_double('Faraday::Response', status: 201)) } let(:channel_name) { 'unique' } subject { Ably::Rest::Channel.new(client, channel_name) }