I have a class that is defined in the module.
module Mod
class Zed
include DataMapper::Resource
end
end
For testing, I define factory.
#/factories/zed.rb
FactoryGirl.define do
factory :zed do
#code
end
end
But when I start testing I get an error.
describe 'Zed' do
it "should have ..." do
FactoryGirl.create(:zed)
end
end
Error:
Failure/Error: FactoryGirl.create(:zed)
NameError:
uninitialized constant Zed
How to test a class that is included in the module? Thanks.