access_spec.rb revision 9dd500e3acdc343dbefcaf88b7663db25be0ef46
require 'spec_helper'
it "should fetch the public#{access_modifier} repository" do end
it "should not fetch the private#{access_modifier} repository" do end
end
end
it 'should not have a token yet' do end
end
context 'after first access_token_get_or_generate' do end
it 'should generate a token' do end
it 'should associate with the generated token' do end
it 'should save the token' do end
end
context 'when already having a valid access token' do end
it 'should still be the same token' do end
it 'should have a later expiration date' do end
end
context 'when already having an expired access token' do end
it 'should generate a new token' do end
end
end
end