Sha256: b442f5989417cdbee1b37419f66c7a5aa41d3086fdb53731ab27d2053641b8d9
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
require 'spec_helper' module Cellect::Server describe API do include_context 'API' { 'Ungrouped' => nil, 'Grouped' => 'grouped' }.each_pair do |grouping_type, grouping| SET_TYPES.shuffle.each do |set_type| context "#{ grouping_type } #{ set_type }" do let(:workflow_type){ [grouping, set_type].compact.join '_' } let(:workflow){ Workflow[workflow_type] } let(:user){ workflow.user 123 } before(:each){ pass_until_state_of workflow, is: :ready } it 'should add seen subjects' do async_workflow = double expect(workflow).to receive(:async).and_return async_workflow expect(async_workflow).to receive(:add_seen_for).with 123, 123 put "/workflows/#{ workflow_type }/users/123/add_seen", subject_id: 123 expect(last_response.status).to eq 200 end end end end it 'should handle missing workflows' do allow(Workflow).to receive(:[]).with('missing').and_return nil put '/workflows/missing/users/123/add_seen', subject_id: 123 expect(last_response.status).to eql 404 expect(last_response.body).to match /Not Found/ end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
cellect-server-1.3.2 | spec/server/api/add_seen_spec.rb |