Sha256: 53ed1232b6ac3214df6553c28f5d707243bbeacc2b91957f474ddf5d16f6c666

Contents?: true

Size: 724 Bytes

Versions: 6

Compression:

Stored size: 724 Bytes

Contents

require 'spec_helper'

describe Helena::Survey do
  it { expect(subject).to have_many(:versions).with_dependent(:destroy) }
  it { expect(subject).to have_many(:sessions).with_dependent(:destroy) }

  it { expect(subject).to validate_presence_of(:name) }
  it { expect(subject).to validate_presence_of(:language) }
  it { expect(subject).to validate_uniqueness_of(:name) }

  it 'has a valid factory' do
    expect(build(:survey)).to be_valid
  end

  it 'returns the newest version if there are any' do
    survey = create :survey

    expect(survey.newest_version).to be_nil

    survey.versions.create version: 99
    survey.versions.create version: 0

    expect(survey.reload.newest_version.version).to be 99
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
helena-2.1.0 spec/models/helena/survey_spec.rb
helena-2.0.2 spec/models/helena/survey_spec.rb
helena-2.0.1 spec/models/helena/survey_spec.rb
helena-2.0.0 spec/models/helena/survey_spec.rb
helena-1.3.1 spec/models/helena/survey_spec.rb
helena-1.3.0 spec/models/helena/survey_spec.rb