Sha256: c48faf7504ac4fcfc3ecd08b145a5fdf8fb353d503025d97be0437160a60e5f1
Contents?: true
Size: 1.72 KB
Versions: 2
Compression:
Stored size: 1.72 KB
Contents
# frozen_string_literal: true describe Sail::Entry, type: :model do describe "scopes" do describe ".by_profile_name" do subject { described_class.by_profile_name(:profile) } let!(:profile_1) { Sail::Profile.create!(name: :profile) } let!(:setting_1) { Sail::Setting.create!(name: :setting, cast_type: :integer, value: 1) } let!(:entry_1) { Sail::Entry.create!(setting: setting_1, profile: profile_1, value: 2) } let!(:profile_2) { Sail::Profile.create!(name: :profile_2) } let!(:setting_2) { Sail::Setting.create!(name: :setting_2, cast_type: :integer, value: 1) } let!(:entry_2) { Sail::Entry.create!(setting: setting_2, profile: profile_2, value: 5) } it { is_expected.to include(entry_1) } it { is_expected.to_not include(entry_2) } end end describe "#name" do subject { entry_1.name } let!(:profile_1) { Sail::Profile.create!(name: :profile) } let!(:setting_1) { Sail::Setting.create!(name: :setting, cast_type: :integer, value: 1) } let!(:entry_1) { Sail::Entry.create!(setting: setting_1, profile: profile_1, value: 2) } it { is_expected.to eq(setting_1.name) } end describe "#dirty?" do subject { entry.dirty? } let!(:profile) { Sail::Profile.create!(name: :profile) } let!(:setting) { Sail::Setting.create!(name: :setting, cast_type: :integer, value: setting_value) } let!(:entry) { Sail::Entry.create!(setting: setting, profile: profile, value: 1) } context "when setting and entry values match" do let(:setting_value) { 1 } it { is_expected.to be_falsey } end context "when setting and entry values do not match" do let(:setting_value) { 2 } it { is_expected.to be_truthy } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sail-3.0.1 | spec/models/sail/entry_spec.rb |
sail-3.0.0 | spec/models/sail/entry_spec.rb |