Sha256: 4fdb5b705e92e5171a0940b07597f266ba16a22463d71cd318b038a8b725464c
Contents?: true
Size: 751 Bytes
Versions: 4
Compression:
Stored size: 751 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) end let(:app) { 1 } let(:rights) { { 'p1' => 'abc', 'p2' => 'def' } } it { expect(subject).to eq({}) } end end end
Version data entries
4 entries across 4 versions & 1 rubygems