Sha256: a41de572f815bd9724f32d4014dabe47f3aa82c7449b5dac41567f87994bc8f2

Contents?: true

Size: 553 Bytes

Versions: 8

Compression:

Stored size: 553 Bytes

Contents

require 'spec_helper'

describe Pushbullet::Push do
  describe '::create_note' do
    context 'given an id, a title and a body' do
      let(:id) { 'letzdevelopment@gmail.com' }
      let(:title) { 'Le title' }
      let(:body) { 'Le body' }

      it 'returns a Push' do
        VCR.use_cassette('push_create_note') do
          expect(described_class.create_note id, title, body).to be_a described_class
        end
      end
    end
  end

  describe '::create_link' do

  end

  describe '::create_address' do

  end

  describe '::create_list'
end

Version data entries

8 entries across 6 versions & 2 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/pushbullet/push_spec.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/pushbullet/push_spec.rb
tdiary-5.0.4 vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/pushbullet/push_spec.rb
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/ruby-pushbullet-0.1.4/spec/pushbullet/push_spec.rb
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/gems/ruby-pushbullet-0.1.4/spec/pushbullet/push_spec.rb
ruby-pushbullet-0.1.4 spec/pushbullet/push_spec.rb
ruby-pushbullet-0.1.3 spec/pushbullet/push_spec.rb
ruby-pushbullet-0.1.2 spec/pushbullet/push_spec.rb