blob: 442f27022e0396a80ae5c86c45f6a4e62a6c6830 (
plain)
| 1
2
3
4
5
6
7
8
 | # Read about factories at http://github.com/thoughtbot/factory_girl
FactoryGirl.define do
  factory :sip_domain do
    sequence(:host  ) {|n| "host#{n}.localdomain" }
    sequence(:realm ) {|n| "host#{n}.localdomain" }
  end
end
 |