File: test_scope_with_user_defined_foreign_key.rb

package info (click to toggle)
ruby-acts-as-list 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 388 kB
  • sloc: ruby: 2,493; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,167 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
require 'helper'

class Checklist < ActiveRecord::Base
  has_many :checklist_items, foreign_key: 'list_id', inverse_of: :checklist
end

class ChecklistItem < ActiveRecord::Base
  belongs_to :checklist, foreign_key: 'list_id', inverse_of: :checklist_items
  acts_as_list scope: :checklist
end

class ScopeWithUserDefinedForeignKeyTest < Minitest::Test
  def setup
    ActiveRecord::Base.connection.create_table :checklists do |t|
    end

    ActiveRecord::Base.connection.create_table :checklist_items do |t|
      t.column :list_id, :integer
      t.column :position, :integer
    end

    ActiveRecord::Base.connection.schema_cache.clear!
    [Checklist, ChecklistItem].each(&:reset_column_information)
    super
  end

  def teardown
    teardown_db
    super
  end

  def test_scope_with_user_defined_foreign_key
    checklist = Checklist.create
    checklist_item_1 = checklist.checklist_items.create
    checklist_item_2 = checklist.checklist_items.create
    checklist_item_3 = checklist.checklist_items.create

    assert_equal 1, checklist_item_1.position
    assert_equal 2, checklist_item_2.position
    assert_equal 3, checklist_item_3.position
  end
end