Skip to content
Snippets Groups Projects

Show descriptions for `:alpha` items in GraphQL docs

All threads resolved!
@@ -241,13 +241,13 @@
@@ -241,13 +241,13 @@
describe '#alpha?' do
describe '#alpha?' do
let(:options) { { milestone: '10.10', reason: reason } }
let(:options) { { milestone: '10.10', reason: reason } }
context 'when when `reason` is `:alpha`' do
context 'when `reason` is `:alpha`' do
let(:reason) { described_class::REASON_ALPHA }
let(:reason) { described_class::REASON_ALPHA }
it { is_expected.to be_alpha }
it { is_expected.to be_alpha }
end
end
context 'when when `reason` is not `:alpha`' do
context 'when `reason` is not `:alpha`' do
let(:reason) { described_class::REASON_RENAMED }
let(:reason) { described_class::REASON_RENAMED }
it { is_expected.not_to be_alpha }
it { is_expected.not_to be_alpha }
Loading