Sha256: 25a9290990fa093ed16c15a2a6d4fc924956c79eaed047994b795379da65da62
Contents?: true
Size: 962 Bytes
Versions: 2
Compression:
Stored size: 962 Bytes
Contents
require File.expand_path('../abstract_unit', __FILE__) class EmployeesGroup < ActiveRecord::Base end class TestValidations < ActiveSupport::TestCase fixtures :employees def test_delete_for_model_without_primary_key EmployeesGroup.create(employee_id: 1, group_id: 100) EmployeesGroup.create(employee_id: 2, group_id: 102) EmployeesGroup.create(employee_id: 3, group_id: 103) assert_equal(EmployeesGroup.all.size, 3) exception = assert_raises(ActiveRecord::StatementInvalid) { EmployeesGroup.where(employee_id: 1).first.destroy } mysql_match = /Unknown column 'employees_groups.' in 'where clause/ =~ exception.message sqlite3_match = /no such column: employees_groups./ =~ exception.message postgresql_match = /PG::SyntaxError: ERROR: zero-length delimited identifier/ =~ exception.message assert(postgresql_match || mysql_match || sqlite3_match) assert(EmployeesGroup.all.size == 3) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
composite_primary_keys-8.1.0 | test/test_delete_all.rb |
composite_primary_keys-8.0.0 | test/test_delete_all.rb |