Sha256: bbdad8a250fdb7014e40b951798ac722939ad365091e5fa531328ae63fc8b64e
Contents?: true
Size: 1.4 KB
Versions: 3
Compression:
Stored size: 1.4 KB
Contents
# encoding: utf-8 require 'spec_helper' describe 'Formtastic::Util' do describe '.deprecated_version_of_rails?' do subject { Formtastic::Util.deprecated_version_of_rails? } context '4.0.0' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("4.0.0") } } it 'should be true' do expect(subject).to be_true end end context '4.0.3' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("4.0.3") } } it 'should be true' do expect(subject).to be_true end end context '4.0.4' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("4.0.4") } } it 'should be false' do expect(subject).to be_false end end context '4.0.5' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("4.0.5") } } it 'should be false' do expect(subject).to be_false end end context '4.1.1' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("4.1.1") } } it 'should be false' do expect(subject).to be_false end end context '5.0.0' do before { allow(Formtastic::Util).to receive(:rails_version) { Gem::Version.new("5.0.0") } } it 'should be true' do expect(subject).to be_false end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
formtastic-3.0.0 | spec/util_spec.rb |
formtastic-3.0.0.rc2 | spec/util_spec.rb |
formtastic-3.0.0.rc | spec/util_spec.rb |