Codebase list ruby-gitlab / debian/4.2.0-1 spec / gitlab / client / keys_spec.rb
debian/4.2.0-1

Tree @debian/4.2.0-1 (Download .tar.gz)

keys_spec.rb @debian/4.2.0-1raw · history · blame

require 'spec_helper'

describe Gitlab::Client do
  describe ".key" do
    before do
      stub_get("/keys/1", "key")
      @key = Gitlab.key(1)
    end

    it "should get the correct resource" do
      expect(a_get("/keys/1")).to have_been_made
    end

    it "should return information about a key" do
      expect(@key.id).to eq(1)
      expect(@key.title).to eq("narkoz@helium")
    end
  end
end