Sha256: a2cbb0587df62027e8af3e753ee79b91b008f510d90d0e4ab3a893578a6a8757
Contents?: true
Size: 533 Bytes
Versions: 7
Compression:
Stored size: 533 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
7 entries across 7 versions & 2 rubygems