File tree Expand file tree Collapse file tree 1 file changed +20
-3
lines changed
Expand file tree Collapse file tree 1 file changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,12 @@ func testORM(t *testing.T, info testInfo) {
351351}
352352
353353func TestGORM (t * testing.T ) {
354- testORM (t , testInfo {language : "go" , orm : "gorm" })
354+ testORM (t , testInfo {
355+ language : "go" ,
356+ orm : "gorm" ,
357+ // TODO(rafi): Test secure mode. See https://github.com/cockroachdb/examples-orms/issues/117)
358+ insecure : true ,
359+ })
355360}
356361
357362func TestGOPG (t * testing.T ) {
@@ -391,6 +396,8 @@ func TestSQLAlchemy(t *testing.T) {
391396 testORM (t , testInfo {
392397 language : "python" ,
393398 orm : "sqlalchemy" ,
399+ // TODO(rafi): Test secure mode. See https://github.com/cockroachdb/examples-orms/issues/117)
400+ insecure : true ,
394401 })
395402}
396403
@@ -407,9 +414,19 @@ func TestDjango(t *testing.T) {
407414}
408415
409416func TestActiveRecord (t * testing.T ) {
410- testORM (t , testInfo {language : "ruby" , orm : "activerecord" })
417+ testORM (t , testInfo {
418+ language : "ruby" ,
419+ orm : "activerecord" ,
420+ // TODO(rafi): Test secure mode. See https://github.com/cockroachdb/examples-orms/issues/117)
421+ insecure : true ,
422+ })
411423}
412424
413425func TestActiveRecord4 (t * testing.T ) {
414- testORM (t , testInfo {language : "ruby" , orm : "ar4" })
426+ testORM (t , testInfo {
427+ language : "ruby" ,
428+ orm : "ar4" ,
429+ // TODO(rafi): Test secure mode. See https://github.com/cockroachdb/examples-orms/issues/117)
430+ insecure : true ,
431+ })
415432}
You can’t perform that action at this time.
0 commit comments