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/acceptance/overrides_spec.rb
Daniel Colson bf04aaa068 Autocorrect all static attributes to dynamic
Most of this was fixed by adding the `attribute-defined-statically-cop`
branch of `thoughtbot/rubocop-rspec` to the Gemfile and running:

```sh
  rubocop \
    --require rubocop-rspec \
    --only FactoryBot/AttributeDefinedStatically \
    --auto-correct
```

I had to update the cucumber tests manually, and I realized our changes
don't handle `ignore` blocks or blocks with arity 1 that use the yielded
DefinitionProxy. I will update
https://github.com/rubocop-hq/rubocop-rspec/pull/666to handle these
cases.
2018-09-14 19:27:13 +00:00

59 lines
1.3 KiB
Ruby

describe "attribute overrides" do
before do
define_model('User', admin: :boolean)
define_model('Post', title: :string,
secure: :boolean,
user_id: :integer) do
belongs_to :user
def secure=(value)
return unless user && user.admin?
write_attribute(:secure, value)
end
end
FactoryBot.define do
factory :user do
factory :admin do
admin { true }
end
end
factory :post do
user
title { "default title" }
end
end
end
let(:admin) { FactoryBot.create(:admin) }
let(:post_attributes) do
{ secure: false }
end
let(:non_admin_post_attributes) do
post_attributes[:user] = FactoryBot.create(:user)
post_attributes
end
let(:admin_post_attributes) do
post_attributes[:user] = admin
post_attributes
end
context "with an admin posting" do
subject { FactoryBot.create(:post, admin_post_attributes) }
its(:secure) { should eq false }
end
context "with a non-admin posting" do
subject { FactoryBot.create(:post, non_admin_post_attributes) }
its(:secure) { should be_nil }
end
context "with no user posting" do
subject { FactoryBot.create(:post, post_attributes) }
its(:secure) { should be_nil }
end
end