Skip to content

Commit

Permalink
Merge pull request #27 from kyledecot/kd-support
Browse files Browse the repository at this point in the history
Move fixtures and factories into spec/support
  • Loading branch information
Kyle Decot authored Jun 30, 2019
2 parents 4502505 + 749c133 commit 2f66fb8
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/app_store_connect/authorization_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

RSpec.describe AppStoreConnect::Authorization do
let(:private_key) { File.read(File.join(__dir__, '../fixtures/private_key.pem')) }
let(:private_key) { File.read(File.join(__dir__, '../support/fixtures/private_key.pem')) }
let(:key_id) { 'M3225B466N' }
let(:issuer_id) { '69a6de70-03db-47e3-e053-5b8c7c11a4d1' }

Expand Down
2 changes: 1 addition & 1 deletion spec/app_store_connect/client_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

RSpec.describe AppStoreConnect::Client do
let(:private_key) { File.read(File.join(__dir__, '../fixtures/private_key.pem')) }
let(:private_key) { File.read(File.join(__dir__, '../support/fixtures/private_key.pem')) }
let(:key_id) { 'M3225B466N' }
let(:issuer_id) { '69a6de70-03db-47e3-e053-5b8c7c11a4d1' }

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 2f66fb8

Please sign in to comment.