blob: b6a690ad392b1882ad4010ce2383ab76728da34b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :geo_ip_country do
from "MyString"
to "MyString"
n_from 1
n_to 1
country_id 1
country_code "MyString"
country_name "MyString"
end
end
|