Sha256: adc0b4fd38fbe15e337572a46d907344f21c18aa03fab5ed3db356e4c1e926fa
Contents?: true
Size: 605 Bytes
Versions: 3
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe NCMB do before do yaml = YAML.load_file(File.join(File.dirname(__FILE__), '..', 'setting.yml')) NCMB.initialize( application_key: yaml['application_key'], client_key: yaml['client_key'] ) @Todo = NCMB::DataStore.new('TODO') @todo = @Todo.new(text: 'Test task') @object_id = @todo.save().objectId end it 'Delete #1' do @todo.delete.should == true end it 'Delete again' do @todo.delete.should == true @todo.delete.should == false @todo.error[:code].should == 'E404001' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ncmb-ruby-client-0.1.6 | spec/delete_spec.rb |
ncmb-ruby-client-0.1.5 | spec/delete_spec.rb |
ncmb-ruby-client-0.1.4 | spec/delete_spec.rb |