thoughtbot--shoulda-matchers/spec/support/unit/helpers/rails_versions.rb

19 lines
332 B
Ruby

module UnitTests
module RailsVersions
extend self
def self.configure_example_group(example_group)
example_group.include(self)
example_group.extend(self)
end
def rails_version
Tests::Version.new(Rails::VERSION::STRING)
end
def rails_oldest_version_supported
5.2
end
end
end