Move default color to the column

This commit is contained in:
Jorge Manrubia
2025-11-14 11:15:09 +01:00
parent b1e087e7c9
commit 06b762c0a8
5 changed files with 8 additions and 9 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ class Column::ColoredTest < ActiveSupport::TestCase
test "creates column with default color when color not provided" do
column = boards(:writebook).columns.create!(name: "New Column")
assert_equal Card::Colored::DEFAULT_COLOR, column.color
assert_equal Column::Colored::DEFAULT_COLOR, column.color
end
test "update the column color" do