1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/spec/factory_bot/declaration/association_spec.rb

39 lines
1.2 KiB
Ruby
Raw Permalink Normal View History

describe FactoryBot::Declaration::Association do
describe "#==" do
context "when the attributes are equal" do
it "the objects are equal" do
declaration = described_class.new(:name, options: true)
other_declaration = described_class.new(:name, options: true)
expect(declaration).to eq(other_declaration)
end
end
context "when the names are different" do
it "the objects are NOT equal" do
declaration = described_class.new(:name, options: true)
other_declaration = described_class.new(:other_name, options: true)
expect(declaration).not_to eq(other_declaration)
end
end
context "when the options are different" do
it "the objects are NOT equal" do
declaration = described_class.new(:name, options: true)
other_declaration = described_class.new(:name, other_options: true)
expect(declaration).not_to eq(other_declaration)
end
end
context "when comparing against another type of object" do
it "the objects are NOT equal" do
declaration = described_class.new(:name)
expect(declaration).not_to eq(:not_a_declaration)
end
end
end
end