mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
8 lines
195 B
Ruby
8 lines
195 B
Ruby
![]() |
describe FactoryBot::Attribute do
|
||
|
let(:name) { "user" }
|
||
|
subject { FactoryBot::Attribute.new(name, false) }
|
||
|
|
||
|
its(:name) { should eq name.to_sym }
|
||
|
it { should_not be_association }
|
||
|
end
|