RSpecでは、現在の例の現在のメタ記述を表す例文から文字列を生成するにはどうすればよいですか?例の完全な説明を表示
例:
RSpec.describe Api::V1::Public::Signin::ByEmailController, type: :controller do
describe 'POST #create' do
context 'when the provider is "email"' do
context 'when there is a saved email' do
context 'when the password is good' do
it 'signs in' do
expect(current_metadata_description).to eq 'Api::V1::Public::Signin::ByEmailController POST #create when the provider is "email" when there is a saved email when the password is good signs in'
end
end
end
end
end
end
我々が見ることができるように、与えられた例の現在のメタ記述がある:
アピ:: V1 ::公開::サインインも:: ByEmailController POST #createプロバイダが「電子メール」のときに保存された電子メールがあるときにパスワードが良好であるときに
ありがとう。
編集:
current_metadata_description
はRSpecのから提供されていません。私はちょうど私が持っているものの例を与えるためにそれを発明しました。
返信いただきありがとうございます。しかし、私は 'current_metadata_description'のようなメソッドを持っていて、現在のメタデータ記述を例の中から取り出すことを望みます。 –
このリンクは、あなたが求めていることをする上でアイデアを提供するように見えます。 –