develop #3

Merged
kbe merged 227 commits from develop into main 2025-09-16 14:35:23 +00:00
2 changed files with 31 additions and 22 deletions
Showing only changes of commit 0879b3c924 - Show all commits

View File

@@ -16,6 +16,7 @@ class TicketTest < ActiveSupport::TestCase
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -109,6 +110,7 @@ class TicketTest < ActiveSupport::TestCase
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -147,6 +149,7 @@ class TicketTest < ActiveSupport::TestCase
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -184,6 +187,7 @@ class TicketTest < ActiveSupport::TestCase
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -221,6 +225,7 @@ class TicketTest < ActiveSupport::TestCase
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,

View File

@@ -49,7 +49,7 @@ class TicketTypeTest < ActiveSupport::TestCase
test "should not save ticket_type without sale_start_at" do test "should not save ticket_type without sale_start_at" do
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -60,7 +60,7 @@ class TicketTypeTest < ActiveSupport::TestCase
test "should not save ticket_type without sale_end_at" do test "should not save ticket_type without sale_end_at" do
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -71,7 +71,7 @@ class TicketTypeTest < ActiveSupport::TestCase
test "should not save ticket_type with sale_end_at before sale_start_at" do test "should not save ticket_type with sale_end_at before sale_start_at" do
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -87,9 +87,10 @@ class TicketTypeTest < ActiveSupport::TestCase
password: "password123", password: "password123",
password_confirmation: "password123" password_confirmation: "password123"
) )
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -97,9 +98,9 @@ class TicketTypeTest < ActiveSupport::TestCase
venue_address: "123 Test Street", venue_address: "123 Test Street",
user: user user: user
) )
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -129,9 +130,10 @@ class TicketTypeTest < ActiveSupport::TestCase
password: "password123", password: "password123",
password_confirmation: "password123" password_confirmation: "password123"
) )
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -139,9 +141,9 @@ class TicketTypeTest < ActiveSupport::TestCase
venue_address: "123 Test Street", venue_address: "123 Test Street",
user: user user: user
) )
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -159,9 +161,10 @@ class TicketTypeTest < ActiveSupport::TestCase
password: "password123", password: "password123",
password_confirmation: "password123" password_confirmation: "password123"
) )
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -169,9 +172,9 @@ class TicketTypeTest < ActiveSupport::TestCase
venue_address: "123 Test Street", venue_address: "123 Test Street",
user: user user: user
) )
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -190,9 +193,10 @@ class TicketTypeTest < ActiveSupport::TestCase
password: "password123", password: "password123",
password_confirmation: "password123" password_confirmation: "password123"
) )
party = Party.create!( party = Party.create!(
name: "Valid Party Name", name: "Valid Party Name",
slug: "valid-party-name",
description: "Valid description for the party that is long enough", description: "Valid description for the party that is long enough",
latitude: 48.8566, latitude: 48.8566,
longitude: 2.3522, longitude: 2.3522,
@@ -200,9 +204,9 @@ class TicketTypeTest < ActiveSupport::TestCase
venue_address: "123 Test Street", venue_address: "123 Test Street",
user: user user: user
) )
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -217,7 +221,7 @@ class TicketTypeTest < ActiveSupport::TestCase
test "should not save ticket_type with invalid minimum_age" do test "should not save ticket_type with invalid minimum_age" do
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -230,7 +234,7 @@ class TicketTypeTest < ActiveSupport::TestCase
test "should not save ticket_type with minimum_age greater than 120" do test "should not save ticket_type with minimum_age greater than 120" do
ticket_type = TicketType.new( ticket_type = TicketType.new(
name: "Valid Ticket Type Name", name: "Valid Ticket Type Name",
description: "Valid description for the ticket type that is long enough", description: "Valid description for the ticket type that is long enough",
price_cents: 1000, price_cents: 1000,
quantity: 50, quantity: 50,
@@ -240,4 +244,4 @@ class TicketTypeTest < ActiveSupport::TestCase
) )
assert_not ticket_type.save assert_not ticket_type.save
end end
end end