spec/cellular/backends/test_spec.rb in cellular-2.1.0 vs spec/cellular/backends/test_spec.rb in cellular-2.2.0

- old
+ new

@@ -1,24 +1,14 @@ require 'spec_helper' describe Cellular::Backends::Test do - let(:recipient) { '47xxxxxxxx' } let(:sender) { 'Custom sender' } let(:message) { 'This is an SMS message' } let(:price) { 100 } - let(:country) { 'NO '} + let(:country) { 'NO ' } - let(:options) { - { - recipient: recipient, - sender: sender, - message: message, - price: price - } - } - before do Cellular.config.username = 'username' Cellular.config.password = 'password' Cellular.config.delivery_url = nil end @@ -47,7 +37,6 @@ expect do described_class.receive '' end.to raise_error NotImplementedError end end - end