Sha256: 418167ed241b454a543d4ca6511df967dd66b17f5100264e9bd7231d1f47fbb5
Contents?: true
Size: 1.33 KB
Versions: 4
Compression:
Stored size: 1.33 KB
Contents
require 'spec_helper' RSpec.describe :products, :type => :api do endpoint 'products/create' do test do payload { schema_example(:product) } it { should have_status(:created) } end end endpoint 'products/show' do test do it { should have_status(:ok) } it { should be_like_schema } end end endpoint 'products/index' do test do it { should have_status(:ok) } it { should be_like_schema_array } end end endpoint 'products/update', resource: 'products/show' do payload { { name: "#{initial_resource.name}-001" } } test do it 'updates the name' do expect(final_resource.name).to_not eq(initial_resource.name) expect(final_resource.name).to eq(request.payload.name) end it 'includes the payload' do expect(final_resource).to include(payload) end it 'does not include the initial resource attributes' do expect(final_resource.values).to_not include(initial_resource.values) end end end endpoint 'products/destroy', resource: 'products/show' do test do it { should have_status(:no_content) } it 'actually destroyed the product' do resource_after_destruction = resource_endpoint.execute expect(resource_after_destruction).to have_status(:not_found) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems