Sha256: 0a2228f5c8f6b28e90f6b4911153ef6bdfe7d8037bb5972d096fe690857728ef
Contents?: true
Size: 618 Bytes
Versions: 25
Compression:
Stored size: 618 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 eq true end end feature 'if xscenario aliases to pending then' do xscenario "this test should be 'temporarily disabled with xscenario'" do end end # rubocop:enable RSpec/MultipleDescribes
Version data entries
25 entries across 15 versions & 3 rubygems