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_spec.rb
2011-01-26 20:44:24 -05:00

28 lines
534 B
Ruby

require 'spec_helper'
require 'acceptance/acceptance_helper'
describe "an instance generated by a factory with a custom class name" do
before do
define_model("User", :admin => :boolean)
FactoryGirl.define do
factory :user do
end
factory :admin, :class => User do
admin { true }
end
end
end
subject { FactoryGirl.create(:admin) }
it "uses the correct class name" do
should be_kind_of(User)
end
it "uses the correct factory definition" do
should be_admin
end
end