Sha256: 937b2e08bb9c243dba77f4bab0eb635f0d2d40e991c83f5d64fc0778ad7b9169
Contents?: true
Size: 814 Bytes
Versions: 3
Compression:
Stored size: 814 Bytes
Contents
# Copyright 2021 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. # frozen_string_literal: true require "test_helper" require "models/singer" require "models/album_partial_disabled" module ActiveRecord module Model class InterleaveTest < SpannerAdapter::TestCase include SpannerAdapter::Associations::TestHelper attr_accessor :singer def setup super @singer = Singer.create first_name: "FirstName", last_name: "LastName" end def teardown Album.destroy_all Singer.destroy_all end def test_with_partial_inserts_disabled AlbumPartialDisabled.create! title: "Title3", singer: singer end end end end
Version data entries
3 entries across 3 versions & 1 rubygems