Skip to content

Commit

Permalink
Remove pending
Browse files Browse the repository at this point in the history
  • Loading branch information
seejohnrun committed Sep 14, 2017
1 parent 642728a commit c27c119
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion spec/octokit/client/apps_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
end
end # .find_app_installations

describe ".find_user_installations", :vcr do
it "returns installations for a user" do
installations = @client.find_user_installations
expect(installations).to be_kind_of Array
assert_requested :get, github_url("/user/installations")
end
end # .find_user_installations

context "with app installation", :vcr do
let(:installation) { test_github_integration_installation }

Expand All @@ -43,7 +51,6 @@

describe ".find_installation_repositories_for_user", :vcr do
it "returns repositories for a user" do
pending
repositories = @jwt_client.find_installation_repositories_for_user(installation)
expect(repositories).to be_kind_of Array
assert_requested :get, github_url("/user/installations")
Expand Down

0 comments on commit c27c119

Please sign in to comment.