|
require 'spec_helper'
|
|
|
|
describe Band do
|
|
|
|
let(:band) { FactoryGirl.create(:band) }
|
|
|
|
describe 'website update' do
|
|
it 'should have http prefix on website url' do
|
|
band.website = 'example.com'
|
|
band.save!
|
|
expect(band.website).to match(/^http:\/\/example.com$/)
|
|
end
|
|
end
|
|
|
|
end
|