Sha256: d76b6846966e83e2ec40f6fa238bd928f6ccfcf21d0b8df6ec4dec797dc9a38d

Contents?: true

Size: 1.29 KB

Versions: 8

Compression:

Stored size: 1.29 KB

Contents

require 'spec_helper'

describe Bcx::Resources::Person, :vcr do
  let(:client) { Bcx::Client::HTTP.new(login: 'bcx-test-user', password: 'secret') }

  describe "GET /people.json" do
    let(:people) { client.people! }

    it "should be an array" do
      expect(people).to be_an Array
    end

    it "first person should have the correct id" do
      expect(people.first.id).to eq 4666033
    end
  end

  describe "GET /people/4666033.json" do
    let(:person) { client.people!(4666033) }

    it "should return a hash" do
      expect(person).to be_a Hashie::Mash
    end

    it "should have the correct id" do
      expect(person.id).to eq 4666033
    end
  end

  describe "GET /people/me.json" do
    let(:person) { client.people.me! }

    it "should return a hash" do
      expect(person).to be_a Hashie::Mash
    end

    it "should have the correct id" do
      expect(person.id).to eq 4666033
    end

    it "should have assigned todos" do
      expect(person.assigned_todos).to be_a Hashie::Mash
    end
  end

  describe "DELETE /people/4904728.json" do
    it "should delete a todolist" do
      client.people(4904728).delete!
      expect { client.people!(4904728) }.to raise_error { |error|
        expect(error).to be_a Bcx::ResponseError
        expect(error.status).to eq 404
      }
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
bcx-1.1.0 spec/bcx/person_spec.rb
bcx-1.0.0 spec/bcx/person_spec.rb
bcx-0.4.0 spec/bcx/person_spec.rb
bcx-0.3.0 spec/bcx/person_spec.rb
bcx-0.2.1 spec/bcx/person_spec.rb
bcx-0.2.0 spec/bcx/person_spec.rb
bcx-0.1.1 spec/bcx/person_spec.rb
bcx-0.1.0 spec/bcx/person_spec.rb