Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for assertEquals (0.17 sec)

  1. tests/associations_belongs_to_test.go

    	tx.Config.DisableForeignKeyConstraintWhenMigrating = true
    	AssertEqual(t, DB.Config.DisableForeignKeyConstraintWhenMigrating, false)
    
    	tx.Migrator().DropTable(&BelongsToUser{}, &Org{})
    	tx.AutoMigrate(&BelongsToUser{}, &Org{})
    
    	user := &BelongsToUser{
    		Org: Org{
    			ID: "BelongsToUser_Org_1",
    		},
    	}
    	err := DB.Create(&user).Error
    	AssertEqual(t, err, nil)
    }
    
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Oct 30 09:15:49 GMT 2023
    - 9.3K bytes
    - Viewed (0)
Back to top