Skip to content
Extraits de code Groupes Projets
Valider dfbc01ca rédigé par maxwell's avatar maxwell
Parcourir les fichiers

added a test for the converter rake task

parent bf563640
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
namespace :migration do
namespace :migrations do
desc 'make old registered services into the new class specific services'
task :service_reclassify do
Service.all.each do |s|
......
# Copyright (c) 2010, Diaspora Inc. This file is
# licensed under the Affero General Public License version 3 or later. See
# the COPYRIGHT file.
require 'spec_helper'
require File.join(Rails.root, 'lib/hcard')
describe 'migrations' do
describe 'service_reclassify' do
it 'makes classless servcices have class' do
s1 = Service.new(:access_token => "foo", :access_secret => "barbar", :provider => "facebook")
s2 = Service.new(:access_token => "foo", :access_secret => "barbar", :provider => "twitter")
s1.save
s2.save
require "rake"
@rake = Rake::Application.new
Rake.application = @rake
Rake.application.rake_require "lib/tasks/migrations"
Rake::Task.define_task(:environment)
@rake['migrations:service_reclassify'].invoke
Service.all.any?{|x| x.class.name == "Services::Twitter"}.should be true
Service.all.any?{|x| x.class.name == "Services::Facebook"}.should be true
end
end
end
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter