Skip to content
Extraits de code Groupes Projets
Valider 88deca16 rédigé par ysksn's avatar ysksn Validation de Yamagishi Kazutoshi
Parcourir les fichiers

Add pending specs for jsonld helper (#9750)

* Add specs for JsonLdHelper#first_of_value

* Add specs for JsonLdHelper#supported_context?
parent 8b976c34
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -22,11 +22,35 @@ describe JsonLdHelper do ...@@ -22,11 +22,35 @@ describe JsonLdHelper do
end end
describe '#first_of_value' do describe '#first_of_value' do
pending context 'value.is_a?(Array)' do
it 'returns value.first' do
value = ['a']
expect(helper.first_of_value(value)).to be 'a'
end
end
context '!value.is_a?(Array)' do
it 'returns value' do
value = 'a'
expect(helper.first_of_value(value)).to be 'a'
end
end
end end
describe '#supported_context?' do describe '#supported_context?' do
pending context "!json.nil? && equals_or_includes?(json['@context'], ActivityPub::TagManager::CONTEXT)" do
it 'returns true' do
json = { '@context' => ActivityPub::TagManager::CONTEXT }.as_json
expect(helper.supported_context?(json)).to be true
end
end
context 'else' do
it 'returns false' do
json = nil
expect(helper.supported_context?(json)).to be false
end
end
end end
describe '#fetch_resource' do describe '#fetch_resource' do
......
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