diff options
author | ysksn <bluewhale1982@gmail.com> | 2019-01-08 12:18:27 +0900 |
---|---|---|
committer | Yamagishi Kazutoshi <ykzts@desire.sh> | 2019-01-08 12:18:27 +0900 |
commit | 88deca16cae2cb6e0b32e28ace68db5b96407cc9 (patch) | |
tree | 3c3c180422bc599f2efd6a38e5657cddd5d23150 /spec/helpers | |
parent | 8b976c3479a329f730fcd35651aa1a046581ebe8 (diff) |
Add pending specs for jsonld helper (#9750)
* Add specs for JsonLdHelper#first_of_value * Add specs for JsonLdHelper#supported_context?
Diffstat (limited to 'spec/helpers')
-rw-r--r-- | spec/helpers/jsonld_helper_spec.rb | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/spec/helpers/jsonld_helper_spec.rb b/spec/helpers/jsonld_helper_spec.rb index a5ab249c2..883a88b14 100644 --- a/spec/helpers/jsonld_helper_spec.rb +++ b/spec/helpers/jsonld_helper_spec.rb @@ -22,11 +22,35 @@ describe JsonLdHelper do end 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 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 describe '#fetch_resource' do |