spec/cellular_spec.rb in cellular-2.1.0 vs spec/cellular_spec.rb in cellular-2.2.0
- old
+ new
@@ -1,9 +1,8 @@
require 'spec_helper'
describe Cellular do
-
describe '::config' do
it 'creates a new configuration if none exists' do
described_class.config = nil
expect(described_class.config).to be_a described_class::Configuration
end
@@ -22,7 +21,6 @@
config.username = 'username'
end
expect(described_class.config.username).to eq 'username'
end
end
-
end