Skip to content

Commit

Permalink
make the linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
jagthedrummer committed Aug 10, 2023
1 parent df70d65 commit 6a33cd4
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 42 deletions.
20 changes: 10 additions & 10 deletions app/models/address.rb
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
class Address < ApplicationRecord
extend ActiveHash::Associations::ActiveRecordExtensions

include Addresses::Base
# πŸš… add concerns above.

# πŸš… add belongs_to associations above.

# πŸš… add has_many associations above.

# πŸš… add oauth providers above.

# πŸš… add has_one associations above.

# πŸš… add scopes above.

# πŸš… add validations above.

# πŸš… add callbacks above.

# πŸš… add delegations above.

# πŸš… add methods above.
end
20 changes: 10 additions & 10 deletions app/models/addresses/continent.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
class Addresses::Continent < ApplicationHash
include Addresses::Continents::Base
# πŸš… add concerns above.

# πŸš… add belongs_to associations above.

# πŸš… add has_many associations above.

# πŸš… add oauth providers above.

# πŸš… add has_one associations above.

# πŸš… add scopes above.

# πŸš… add validations above.

# πŸš… add callbacks above.

# πŸš… add delegations above.

# πŸš… add methods above.
end
end
20 changes: 10 additions & 10 deletions app/models/addresses/region.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
class Addresses::Region < ApplicationHash
include Addresses::Regions::Base
# πŸš… add concerns above.

# πŸš… add belongs_to associations above.

# πŸš… add has_many associations above.

# πŸš… add oauth providers above.

# πŸš… add has_one associations above.

# πŸš… add scopes above.

# πŸš… add validations above.

# πŸš… add callbacks above.

# πŸš… add delegations above.

# πŸš… add methods above.
end
end
20 changes: 10 additions & 10 deletions app/models/addresses/subcontinent.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
class Addresses::Subcontinent < ApplicationHash
include Addresses::Subcontinents::Base
# πŸš… add concerns above.

# πŸš… add belongs_to associations above.

# πŸš… add has_many associations above.

# πŸš… add oauth providers above.

# πŸš… add has_one associations above.

# πŸš… add scopes above.

# πŸš… add validations above.

# πŸš… add callbacks above.

# πŸš… add delegations above.

# πŸš… add methods above.
end
end
4 changes: 2 additions & 2 deletions test/system/tangible_thing_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ class TangibleThingTest < ApplicationSystemTestCase
fill_in "Email Field Value", with: "me@acme.com"
fill_in "Password Field Value", with: "secure-password"
fill_in "Phone Field Value", with: "(201) 551-8321"

assert page.has_content? "State / Province"
select "Japan", from: "Country"
assert page.has_content? "Prefecture"

select "One", from: "Super Select Value"
select2_select "Multiple Super Select Values", ["Five", "Six"]
fill_in "Text Area Value", with: "Long text for this text area field"
Expand Down

0 comments on commit 6a33cd4

Please sign in to comment.