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/definition_camel_string_spec.rb

15 lines
353 B
Ruby
Raw Permalink Normal View History

2013-07-22 11:17:37 -04:00
describe "an instance generated by a factory named a camel case string " do
before do
define_model("UserModel")
FactoryBot.define do
factory "UserModel", class: UserModel
2013-07-22 11:17:37 -04:00
end
end
it "registers the UserModel factory" do
expect(FactoryBot::Internal.factory_by_name("UserModel"))
.to be_a(FactoryBot::Factory)
2013-07-22 11:17:37 -04:00
end
end