Sha256: 451958eb9f57440db0ff91e129fed0352129d717ff51d2499500a1d5c70018be

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

RSpec.describe Spree::QuestionCategory, type: :model do

  context 'instance attributes' do
    it 'create a new instance given valid attributes' do
      described_class.create!(name: 'Question 1')
    end
  end

  it 'factory is valid' do
    expect(build(:question_category)).to be_valid
  end

  context 'relation' do
    it { is_expected.to have_many(:questions) }

    it 'have questions' do
      expect(subject.questions).not_to be_nil
    end
  end

  context 'validation' do
    it { is_expected.to validate_presence_of(:name) }
    it { is_expected.to validate_uniqueness_of(:name) }
    it { is_expected.to accept_nested_attributes_for(:questions) }
  end

  context 'mass assignment' do
    %w(name questions_attributes question answer).each do |column|
      it { should allow_mass_assignment_of(column.to_sym) }
    end
  end

  context 'acts as list' do

    subject { create(:question_category) }

    before do
      2.times { create(:question_category) }
    end

    it 'can have its position changed' do
      subject.move_to_bottom
      expect(subject.position).to eq(3)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree-faq-2.0.1 spec/models/question_category_spec.rb