Sha256: 908793ab31a0dc72b6781a339036afb0b0439ff20f1d74bd5e2a9539d3e2b823
Contents?: true
Size: 663 Bytes
Versions: 6
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true # rubocop:disable RSpec/MultipleDescribes require 'spec_helper' require 'capybara/rspec' RSpec.configuration.before(:each, file_path: './spec/rspec/scenarios_spec.rb') do @in_filtered_hook = true end feature 'if fscenario aliases focused tag then' do fscenario 'scenario should have focused meta tag' do |example| # rubocop:disable RSpec/Focus expect(example.metadata[:focus]).to be true end end feature 'if xscenario aliases to pending then' do xscenario "this test should be 'temporarily disabled with xscenario'" do # rubocop:disable RSpec/PendingWithoutReason end end # rubocop:enable RSpec/MultipleDescribes
Version data entries
6 entries across 6 versions & 3 rubygems