Sha256: 4a2a4309a3d9418b6189c30937579fc407969d13f232e637354fa69467d63241
Contents?: true
Size: 1.58 KB
Versions: 7
Compression:
Stored size: 1.58 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Prismic::API do before do @api = Prismic.api('https://micro.prismic.io/api', nil) end describe '#query' do it 'returns the documents filter by the query' do docs = @api.query(Prismic::Predicates::at('document.id', 'UrDejAEAAFwMyrW9')) docs.size.should == 1 docs[0].id.should == 'UrDejAEAAFwMyrW9' end it 'handles multiple predicates' do docs = @api.query([ Prismic::Predicates::at('document.type', 'all'), Prismic::Predicates::at('my.all.uid', 'all') ]) docs.size.should == 1 docs[0].id.should == 'WHx-gSYAAMkyXYX_' end end describe '#all' do it 'returns all documents' do docs = @api.all() docs.size.should >= 20 end end describe '#get_by_id' do it 'returns the right document' do doc = @api.get_by_id('UrDejAEAAFwMyrW9') doc.id.should == 'UrDejAEAAFwMyrW9' end end describe '#get_by_uid' do it 'returns the right document' do doc = @api.get_by_uid('with-uid', 'demo') doc.id.should == 'V_OoLCYAAFv84agw' end end describe '#get_by_ids' do it 'returns the right documents' do docs = @api.get_by_ids(['UrDejAEAAFwMyrW9', 'V2OokCUAAHSZcOUP']) docs.size.should == 2 docs[0].id.should == 'UrDejAEAAFwMyrW9' docs[1].id.should == 'V2OokCUAAHSZcOUP' end end describe '#get_single' do it 'returns the singleton document of a type' do # 'single' is the type name doc = @api.get_single('single') doc.id.should == 'V_OplCUAACQAE0lA' end end end
Version data entries
7 entries across 7 versions & 1 rubygems