You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I develop rails app using redshift, but rspec using FactoryGirl does not work.
FactoryGirl.define do
factory :access_log, class: AccessLog do
datetime { Time.now }
.....
end
end
RSpec.describe 'Controller', type: :request do
let!(:access_log) { FactoryGirl.create(:access_log) }
describe 'GET /' do
it do
get "/", params, headers
.......
end
end
end
I develop rails app using redshift, but rspec using FactoryGirl does not work.
what is
has_precision
? It seems to not to be defined.The text was updated successfully, but these errors were encountered: