mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
fix warnings in tests
This commit is contained in:
parent
6943b37d64
commit
b2230076ed
2 changed files with 3 additions and 2 deletions
|
@ -6,7 +6,7 @@ class MockController
|
|||
end
|
||||
|
||||
def action_name
|
||||
@action_name || "edit"
|
||||
defined?(@action_name) ? @action_name : "edit"
|
||||
end
|
||||
|
||||
def url_for(*args)
|
||||
|
|
|
@ -45,6 +45,7 @@ class User
|
|||
:post_count, :lock_version, :amount, :attempts, :action, :credit_card
|
||||
|
||||
def initialize(options={})
|
||||
@new_record = false
|
||||
options.each do |key, value|
|
||||
send("#{key}=", value)
|
||||
end if options
|
||||
|
@ -55,7 +56,7 @@ class User
|
|||
end
|
||||
|
||||
def persisted?
|
||||
!(@new_record || false)
|
||||
!@new_record
|
||||
end
|
||||
|
||||
def company_attributes=(*)
|
||||
|
|
Loading…
Reference in a new issue