Sha256: 82429ec2e031745faa2f3e0c6cab32e547a5ae4412d7570968608b5e4b3d5f7f
Contents?: true
Size: 778 Bytes
Versions: 4
Compression:
Stored size: 778 Bytes
Contents
require 'spec_helper' require 'kintone/command/space_body' require 'kintone/api' describe Kintone::Command::SpaceBody do let(:target) { Kintone::Command::SpaceBody.new(api) } let(:api) { Kintone::Api.new('example.cybozu.com', 'Administrator', 'cybozu') } describe '#update' do subject { target.update(id, body) } context '' do before(:each) do stub_request( :put, 'https://example.cybozu.com/k/v1/space/body.json' ) .with(body: { id: 1, body: '<b>総務課</b>専用のスペースです。' }.to_json) .to_return(body: '{}', status: 200) end let(:id) { 1 } let(:body) { '<b>総務課</b>専用のスペースです。' } it { expect(subject).to eq({}) } end end end
Version data entries
4 entries across 4 versions & 1 rubygems