Sha256: 9299ddcfa2b244321ab7480fb113c93d2f60d0491daadc6a489f626e0d83e24c

Contents?: true

Size: 802 Bytes

Versions: 2

Compression:

Stored size: 802 Bytes

Contents

require 'spec_helper'
require 'kintone/command/app_acl'
require 'kintone/api'

describe Kintone::Command::AppAcl do
  let(:target) { Kintone::Command::AppAcl.new(api) }
  let(:api) { Kintone::Api.new('example.cybozu.com', 'Administrator', 'cybozu') }

  describe '#update' do
    subject { target.update(app, rights) }

    context '' do
      before(:each) do
        stub_request(
          :put,
          'https://example.cybozu.com/k/v1/app/acl.json'
        )
          .with(body: { 'app' => 1, 'rights' => { 'p1' => 'abc', 'p2' => 'def' } }.to_json)
          .to_return(body: '{}', status: 200, headers: { 'Content-type' => 'application/json' })
      end

      let(:app) { 1 }
      let(:rights) { { 'p1' => 'abc', 'p2' => 'def' } }

      it { expect(subject).to eq({}) }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kintone-0.1.4 spec/kintone/command/app_acl_spec.rb
kintone-0.1.3 spec/kintone/command/app_acl_spec.rb