Skip to content

Commit

Permalink
(maint) Removing 'pending' for bundle management acceptance
Browse files Browse the repository at this point in the history
The pending test for bundle management fails on appveyor because it
actually passes due to the presence of devkit.
This test should not be pending - there should be a devkit installed.
The test can be manually ignored on workstations that don't/can't have
devkit.
  • Loading branch information
James Stocks committed Jun 16, 2017
1 parent 9fb108d commit 6843126
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions spec/acceptance/bundle_management_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@
end

describe command('pdk test unit') do
its(:exit_status) { pending 'json install requires ruby devkit' if Gem.win_platform?; is_expected.to eq 0 }
its(:stderr) do
pending 'json install requires ruby devkit' if Gem.win_platform?
is_expected.to match(%r{Checking for missing Gemfile dependencies}i)
end
its(:exit_status) { is_expected.to eq 0 }
its(:stderr) { is_expected.to match(%r{Checking for missing Gemfile dependencies}i) }

describe file('Gemfile.lock') do
it { pending 'json install requires ruby devkit' if Gem.win_platform?; is_expected.to be_file }
it { is_expected.to be_file }
end
end
end
Expand Down

0 comments on commit 6843126

Please sign in to comment.