Rails6でContent-Typeのtestを書きたいっ!

何かいい感じのMatcherがあるんかな?と思ったけど、.content_typeでheadersからContent-Type取れるんですね👍

describe 'index' do
  subject { get :index }

  it 'pdf' do
    expect(subject.content_type).to eq "application/pdf"
  end
end