xtrasimplicity/rails_readonly_injector

View on GitHub
cucumber_features/step_definitions/generic_steps.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

Given('I execute:') do |code|
  eval code
end

Then('The page should contain {string}') do |string|
  expect(page).to have_content(string)
end