Codebase list ruby-gitlab / upstream/4.1.0 spec / gitlab / client / keys_spec.rb
upstream/4.1.0

Tree @upstream/4.1.0 (Download .tar.gz)

keys_spec.rb @upstream/4.1.0raw · 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