spec/integration/identifier_spec.rb in ezid-client-1.8.0 vs spec/integration/identifier_spec.rb in ezid-client-1.9.0.rc1

- old
+ new

@@ -1,7 +1,7 @@ module Ezid - RSpec.describe Identifier, integration: true do + RSpec.describe Identifier, ezid: true do before { @identifier = described_class.mint(TEST_ARK_SHOULDER, target: "http://example.com") } @@ -36,10 +36,11 @@ expect(subject.target).to eq("http://www.microsoft.com") } end describe "delete" do subject { described_class.mint(TEST_ARK_SHOULDER, status: "reserved") } - it "deletes the identifier" do + # Getting 400 Bad Request response - DCS 3/22/21 + xit "deletes the identifier" do subject.delete expect(subject).to be_deleted expect { described_class.find(subject.id) }.to raise_error(IdentifierNotFoundError) end end