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
class TestModel < ActiveRecord::Base
use_switch_point :common
end
require "rails_helper"
RSpec.describe TestModel, :use_transaction do
it "test switch point" do
SwitchPoint.with_readonly do
expect(TestModel.connection.pool.spec.config[:host]).to eq("localhost")
end
end
end
This test case passed in local but failed in Circle CI.
Can anyone help me?
The text was updated successfully, but these errors were encountered:
I write below codes.
database.yml
TestModel
This test case passed in local but failed in Circle CI.
Can anyone help me?
The text was updated successfully, but these errors were encountered: