spec/spec_helper.rb in phony_rails-0.9.0 vs spec/spec_helper.rb in phony_rails-0.11.0
- old
+ new
@@ -13,10 +13,11 @@
ActiveRecord::Schema.define do
create_table :active_record_models do |table|
table.column :phone_attribute, :string
table.column :phone_number, :string
table.column :phone_number_as_normalized, :string
+ table.column :fax_number, :string
end
end
module SharedModelMethods
extend ActiveSupport::Concern
@@ -24,10 +25,11 @@
attr_accessor :phone_method, :phone1_method, :country_code
phony_normalized_method :phone_attribute # adds normalized_phone_attribute method
phony_normalized_method :phone_method # adds normalized_phone_method method
phony_normalized_method :phone1_method, :default_country_code => 'DE' # adds normalized_phone_method method
phony_normalize :phone_number # normalized on validation
+ phony_normalize :fax_number, :default_country_code => 'AU'
end
end
class ActiveRecordModel < ActiveRecord::Base
include SharedModelMethods
@@ -40,9 +42,10 @@
include Mongoid::Document
include Mongoid::Phony
field :phone_attribute, :type => String
field :phone_number, :type => String
field :phone_number_as_normalized, :type => String
+ field :fax_number
include SharedModelMethods
end
class MongoidDummy < MongoidModel
end
\ No newline at end of file